AngularJS获取焦点及失去焦点时的表单验证功能 AngularJS实现的获取焦点及失去焦点时的表单验证功能示例
itsonglin 人气:0想了解AngularJS实现的获取焦点及失去焦点时的表单验证功能示例的相关内容吗,itsonglin在本文为您仔细讲解AngularJS获取焦点及失去焦点时的表单验证功能的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:AngularJS,获取焦点,失去焦点时,表单验证,下面大家一起来学习吧。
本文实例讲述了AngularJS实现的获取焦点及失去焦点时的表单验证功能。分享给大家供大家参考,具体如下:
<!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>
运行效果:
希望本文所述对大家AngularJS程序设计有所帮助。
加载全部内容