AngluarJS中的ng-focus指令用于在聚焦元素时应用自定义行为。它可以用于显示/隐藏某些元素,也可以在元素被聚焦时弹出警报。它由<a>,<input>,<select>和<textarea>元素支持。
用法:
<element ng-focus="expression"> Contents... </element>
表达式告诉输入集中的位置时要做什么。
范例1:本示例使用ng-focus指令显示文本区域字段。
<!DOCTYPE html>
<html>
<head>
<title>ng-focus Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js">
</script>
</head>
<body ng-app="" style="text-align:center">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-focus Directive</h2>
<a href="" ng-focus="isCheck=true">
Click to proceed.
</a>
<br><br>
<div class="row" ng-show="isCheck">
Enter Name:<input type="text"
ng-focus="isCheck=true"
placeholder="geeksforgeeks" />
</div>
</body>
</html>
输出:
在点击链接之前:
单击链接后:
范例2:本示例使用ng-focus指令在输入文本字段上显示焦点。
<!DOCTYPE html>
<html>
<head>
<title>ng-focus Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js">
</script>
</head>
<body ng-app="app" style="text-align:center;">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-focus Directive</h2>
<div ng-controller="geek">
Input:<input type="text" ng-focus="focused = true"
ng-blur="focused = false" />
<pre ng-show="focused">Input is focused.</pre>
</div>
<script>
var app = angular.module("app", []);
app.controller('geek', ['$scope', function ($scope) {
}]);
</script>
</body>
</html>
输出:
在点击文本区域之前:
单击文本区域后:
相关用法
- AngularJS ng-if用法及代码示例
- AngularJS ng-cut用法及代码示例
- AngularJS ng-value用法及代码示例
- AngularJS ng-src用法及代码示例
- AngularJS ng-app用法及代码示例
- AngularJS ng-csp用法及代码示例
- AngularJS ng-jq用法及代码示例
- AngularJS ng-required用法及代码示例
- AngularJS ng-bind用法及代码示例
- AngularJS ng-srcset用法及代码示例
- AngularJS ng-paste用法及代码示例
- AngularJS ng-submit用法及代码示例
- AngularJS ng-style用法及代码示例
- AngularJS ng-selected用法及代码示例
注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 AngularJS | ng-focus Directive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。