欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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

程序员文章站 2022-05-05 23:42:11
...
本文主要介绍了AngularJS实现的获取焦点及失去焦点时的表单验证功能,涉及AngularJS使用ng-blur、ng-focus针对表单事件监听相关操作技巧,需要的朋友可以参考下,希望能帮助到大家。

本文实例讲述了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获取焦点及失去焦点时的表单验证功能实现方法

相关推荐:

完美解决BootStrap模态框和select2合用时input无法获取焦点问题

jquery中blur()失去焦点与focus() 获取焦点事件

javascript - 怎么解决苹果5中input获取焦点,软键盘遮挡input的问题

以上就是AngularJS获取焦点及失去焦点时的表单验证功能实现方法的详细内容,更多请关注其它相关文章!