當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。