如何僅在元素有效時觸發模糊函數沒有其他錯誤?
HTML
<input type="text" id="order" ng-model="order" name="order" class="form-control"
ng-pattern="/^[0-9]*$/" ng-minlength="9" maxlength="9"
required="" ng-blur="something()" />
JS
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.something=function(){
if($scope.routingNumber.$valid)
alert("yippie");
}
});
喜歡這個? http://plnkr.co/edit/oiGKFq?p=preview可能我誤解了你的問題... – PSL 2014-10-01 21:51:54
你的問題解決了嗎?你是否嘗試過PSL活塞和我提供的答案? – apairet 2014-10-05 08:08:01
抱歉忘了更新它。是的,它被解決了:)謝謝 – future 2014-10-10 20:33:34