angularjs 表單密碼驗證自訂指令實現代碼_AngularJS

來源:互聯網
上載者:User

html代碼

<form name="form">    <input type="password" name="password" ng-model="password" required placeholder="請輸入密碼">    <input type="password" name="passwordConfirm" ng-model="passwordConfirm" equal-to="password" placeholder="請再次輸入密碼">    <span ng-show="form.passwordConfirm.$error.equalTo">兩次密碼不一致</span>  </form>

js

angular.module("Valid",[]).directive("equalTo", function () {  return {    require: "ngModel",    link: function (scope, ele, attrs, ctrl) {      console.log(scope);//列印當前範圍      console.log(attrs);//列印當前標籤屬性列表      console.log(ctrl);//列印當前ctrl      var target = attrs["equalTo"];//擷取自訂指令屬性索引值      if (target) {//判斷鍵是否存在        scope.$watch(target, function () {//存在啟動監聽其值          ctrl.$validate()//每次改變手動調用驗證        })         // 擷取當前模型控制器的父控制器FormController        var targetCtrl = ctrl.$$parentForm[target];//擷取指定模型控制器        console.log(targetCtrl)        ctrl.$validators.equalTo = function (modelValue, viewVale) {//自訂驗證器內容                    var targetValue = targetCtrl.$viewValue;//擷取password的輸入值          return targetValue == viewVale;//是否等於passwordConfirm的值        }        ctrl.$formatters.push(function (value) {          console.log("進行中資料格式化的值:",value)          return value;        })        ctrl.$parsers.push(function (value) {          console.log("進行中資料轉換的值:",value)          return value;        })      }    }  }})

示範地址:https://tianyouh.github.io/angularPasswordConfirm/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.