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


AngularJS ng-open用法及代碼示例


AngularJS中的ng-open指令用於指定指定HTML元素的open屬性。如果ng-open指令內的表達式返回true,則將顯示詳細信息,否則將被隱藏。

用法:

<element ng-open="expression"> Contents... <element>

例:本示例使用ng-open指令打開元素的屬性。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>ng-open 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-open Directive</h2>                              
      
    <details id="details" ng-open="open"> 
        <summary>Click to view sorting algorithms:</summary> 
        <summary>Merge sort</summary> 
        <summary>Quick sort</summary> 
        <summary>Bubble sort</summary> 
    </details> 
</body> 
  
</html>                    

輸出:
單擊元素之前:
ngopen
單擊元素後:
ngopen



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 AngularJS | ng-open Directive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。