AngularJS ng-open 指令
AngularJS 實例
通過點擊 checkbox 顯示或隱藏 <details> 列表:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app=""> 點擊這裡顯示 details 列表: <input type="checkbox" ng-model="showDetails"><br> <br> <details ng-open="showDetails"> <summary>學的不僅是技術,更是夢想!</summary> <p> - 菜鳥教程</p> </details> <p><b>注意:</b> 目前只有 Opera, Chrome, 和 Safari 浏覽器支持 details 標簽。</p> </body> </html>
定義和用法
ng-open 指令用於設置 details 列表的 open 屬性。
如果 ng-open 的表達式返回 true 則 details 列表是可見的。
語法
<details ng-open="expression">...</details>
<details> 元素支持該指令。
參數值
以上就是對AngularJS ng-open 指令的資料整理,後續繼續補充。