您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關使用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輸入了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。