This article mainly introduces the form verification function implemented by AngularJS to obtain focus and lose focus. It involves AngularJS's use of ng-blur and ng-focus to monitor form event related operating techniques. Friends who need it can refer to it. I hope it can help. Everyone.
The example in this article describes the form validation function implemented by AngularJS to obtain focus and lose focus. Share it with everyone for your reference, the details are as follows:
<!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>
Running effect:
Related recommendations:
blur() loses focus and focus() gets focus event in jquery
The above is the detailed content of How to implement form validation function when AngularJS gets focus and loses focus. For more information, please follow other related articles on the PHP Chinese website!