本文主要介紹了AngularJS實現的獲取焦點及失去焦點時的表單驗證功能,涉及AngularJS使用ng-blur、ng-focus針對表單事件監聽相關操作技巧,需要的朋友可以參考下,希望能幫助到大家。
<!DOCTYPE html> <html ng-app="formExample"> <head> <meta charset="UTF-8"> <title></title> <script src="../js/angular.js"></script> <script> angular.module('formExample', []) .controller('FormController', ['$scope', function($scope) { $scope.userType = 'guest'; $scope.change = false; }]); </script> </head> <body> <form name="myForm" ng-controller="FormController"> userType: <input name="input" ng-model="userType" ng-blur="change=true" ng-focus="change=false" required> <span class="error" ng-show="myForm.input.$error.required && change">必填项</span><br> </form> </body> </html>
運行效果:
#相關推薦:
## 完美解決BootStrap模態框與select2合用時input無法取得焦點問題
jquery中blur()失去焦點與focus() 取得焦點事件
如何使用html5的Page Visibility API來實作取得焦點js事件#
以上是AngularJS實現的獲取焦點及失去焦點時的表單驗證功能詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!