首頁 > web前端 > js教程 > 主體

AngularJS實現的獲取焦點及失去焦點時的表單驗證功能詳解

小云云
發布: 2018-01-03 11:05:41
原創
3185 人瀏覽過

本文主要介紹了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(&#39;formExample&#39;, [])
        .controller(&#39;FormController&#39;, [&#39;$scope&#39;, function($scope)
        {
          $scope.userType = &#39;guest&#39;;
          $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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板