AngularJS实现的获取焦点及失去焦点时的表单验证

本文实例讲述了AngularJS实现的获取焦点及失去焦点时的表单验证功能。分享给大家供大家参考,具体如下:

<!DOCTYPE html> <html ng-app="formExample"> <head> <meta charset="UTF-8"> <title></title> <script src="https://www.jb51.net/js/angular.js"></script> <script> angular.module('formExample', []) .controller('FormController', ['$scope', function($scope) { $scope.userType = 'guest'; $scope.change = false; }]); </script> </head> <body> <form ng-controller="FormController"> userType: <input ng-model="userType" ng-blur="change=true" ng-focus="change=false" required> <span ng-show="myForm.input.$error.required && change">必填项</span><br> </form> </body> </html>

运行效果:

AngularJS实现的获取焦点及失去焦点时的表单验证

更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《AngularJS指令操作技巧总结》、《AngularJS入门与进阶教程》及《AngularJS MVC架构总结

希望本文所述对大家AngularJS程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wywfdf.html