91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Angualrjs中表單驗證的方式有哪些

發布時間:2021-08-11 14:59:56 來源:億速云 閱讀:125 作者:小新 欄目:web開發

這篇文章主要介紹Angualrjs中表單驗證的方式有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

AngularJS提供了表單驗證,但是驗證的過程交互體驗很不好,比如重設密碼,重復密碼的時候一鍵入就會提示密碼不正確,現整理了兩種方法,僅供借鑒。

一,點擊提交驗證

<form action="" class="form-horizontal col-md-9" name="reset_pwd" ng-submit="resetPwd()">
  <div class="form-group">
    <label class="col-sm-2 control-label">密碼</label>
    <div class="col-sm-8">
      <input type="password" name="mycompwd" class="form-control" ng-model="mycompwd" placeholder="請輸入密碼">
    </div>
  </div>
  <div class="form-group">
    <label class="col-sm-2 control-label">重復密碼</label>
    <div class="col-sm-8">
      <input type="password" name="resetmycompwd" class="form-control" ng-model="resetmycompwd" placeholder="再次輸入密碼" required>
    </div>
    <span  ng-show="mycompwd!=resetmycompwd && reset_pwd.resetmycompwd.$dirty && reset_pwd.submitted
    ">密碼不一致</span>
  </div>
  <div class="form-group">
    <button type="submit" class="btn btn-primary" >確認</button>
    <button type="button" class="btn btn-default" ng-click="resetpwd_cancle()">取消</button>
  </div>
</form>

當用戶試圖提交表單時,你可以在作用域中捕獲到一個submitted值,然后對表單內容進行驗證并顯示錯誤信息。

JS代碼

$scope.submitted = false;
$scope.resetPwd = function(){
  console.log(666);
  if($scope.reset_pwd.$valid && $scope.mycompwd == $scope.resetmycompwd){
    console.log('重置成功,進行其他操作');
  }else{
    $scope.reset_pwd.submitted = true;
  }
}

親測可用。

第二種失去焦點驗證

<form action="" class="form-horizontal col-md-9" name="reset_pwd" ng-submit="resetPwd()">
  <div class="form-group">
    <label class="col-sm-2 control-label">密&nbsp&nbsp碼</label>
    <div class="col-sm-8">
      <input type="password" name="mycompwd" class="form-control" ng-model="mycompwd" placeholder="請輸入密碼">
    </div>
  </div>
  <div class="form-group">
    <label class="col-sm-2 control-label">重復密碼</label>
    <div class="col-sm-8">
      <input ng-focus type="password" name="resetmycompwd" class="form-control" ng-model="resetmycompwd" placeholder="再次輸入密碼" required>
    </div>
    <span  ng-show="mycompwd!=resetmycompwd && reset_pwd.resetmycompwd.$dirty
      && !reset_pwd.resetmycompwd.$focused
    ">密碼不一致</span>
  </div>
  <div class="form-group">
    <button type="submit" class="btn btn-primary" >確認</button>
    <button type="button" class="btn btn-default" ng-click="resetpwd_cancle()">取消</button>
  </div>
</form>

JS代碼

app.directive('ngFocus',[function(){
  var focusClass = 'ng-focused';
  return{
    restrict:'AE',
    require:'ngModel',
    link:function(scope,element,attrs,ctrl){
      ctrl.$focused = false;
      element.bind('focus',function(e){
        element.addClass(focusClass);
        scope.$apply(function(){
          ctrl.$focused = true;
        });
        element.bind('blur',function(e){
          element.removeClass(focusClass);
          scope.$apply(function(){
            ctrl.$focused = false;
          });
        });
      })
    }
  };
}]);

以上是“Angualrjs中表單驗證的方式有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

图片| 泰顺县| 荆州市| 平陆县| 湘潭市| 和林格尔县| 丹巴县| 罗平县| 太白县| 沭阳县| 许昌县| 田阳县| 方城县| 嘉荫县| 嘉鱼县| 哈尔滨市| 临海市| 三都| 东阿县| 山西省| 阿克苏市| 巴南区| 兴化市| 托里县| 集贤县| 宽城| 尚义县| 抚州市| 日喀则市| 瑞安市| 崇仁县| 聂荣县| 措美县| 柳河县| 五大连池市| 绥江县| 蓝田县| 白玉县| 将乐县| 明水县| 元氏县|