当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


AngularJS ng-focus用法及代码示例


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>

输出:
在点击链接之前:
ngfocus
单击链接后:
ngfocus

范例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>

输出:
在点击文本区域之前:
ngfocus
单击文本区域后:
ngfocus



相关用法


注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 AngularJS | ng-focus Directive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。