亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

使用angular怎么監聽input輸入

發布時間:2021-04-07 16:49:44 來源:億速云 閱讀:549 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關使用angular怎么監聽input輸入,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

jsp:

<form class="register ng-scope" ng-app="regist_app" onsubmit="registSumbitValid()" ng-controller="regist_control">

 <div class="item">
  <input id="username" name="username" placeholder="請填寫11位手機號碼" class="input-item" ng-model="username" >
  <span class="warnning">{{username_error}}</span>
 </div>
</form>

這里需要添加ng-app以及ng-controller來規定一個angularApp的范圍,再在input標簽中添加ng-model屬性,讓angularjs根據這個屬性來監聽輸入,根據輸入把用戶提示放到{{username_error}}中

js:

var usernameValid=false;
var registApp =angular.module('regist_app',[]);
registApp.controller('regist_control',function($scope){
 $scope.username="";
 $scope.username_error="";
 var phonePattern=/\D+/;
 /*驗證號碼輸入*/
 $scope.$watch('username',function(newValue,oldValue){
  if(newValue!=oldValue){
   if(newValue==""){
    $scope.username_error="號碼不能為空";
    usernameValid=false;
   }
   else if(phonePattern.test(newValue)){
    $scope.username_error='只能輸入數字';
    usernameValid=false;
   }
   else if(newValue.length!=11){
    $scope.username_error='格式不正確,請輸入11位號碼';
    usernameValid=false;
   }else if(newValue.length==11){
    $scope.username_error="";
    usernameValid=true;
   }
  }
 });
}

scope.scope.watch(參數,function),這個參數就是input的ng-model的值。function的第一個參數是新的值,第二個參數是舊的值,可以判斷newValue來給用戶相應的提示,結合pattern來判斷用戶輸入是否合法。一個Controller中可以有多個scope.scope.watch(),這里我只貼出一個input的驗證方法,其他的都差不多。

usernameValid這個值用來記錄當前的input輸入是否合法,用于表單提交時根據usernameValid來判斷。

上述就是小編為大家分享的使用angular怎么監聽input輸入了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

铅山县| 高陵县| 青冈县| 宝坻区| 来安县| 揭阳市| 铜川市| 沅陵县| 德保县| 云梦县| 井冈山市| 嫩江县| 屏东市| 班戈县| 凭祥市| 额济纳旗| 花垣县| 西昌市| 东辽县| 平利县| 阿坝| 天津市| 天门市| 江口县| 景宁| 平安县| 梨树县| 东城区| 镇平县| 济源市| 井冈山市| 通化市| 屏东市| 盐源县| 东山县| 绵阳市| 永福县| 新丰县| 盐山县| 务川| 福建省|