ホームページ > 記事 > ウェブフロントエンド > 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>
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトの他の関連記事に注目してください。
推奨読書:
BootStrapタイトルを設定して境界線を越えないようにする方法
parabola.jsは放物線とショッピングカート機能を実装します
以上がAngularJS はフォーカスを取得し、フォーカスを操作しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。