open 指令简单实例

AngularJS ng-open 指令

AngularJS 实例

通过点击 checkbox 显示或隐藏 <details> 列表:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://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> 元素支持该指令。

参数值

值 描述
expression   如果表达式为 true 则会设置 details 的 open 属性。  

以上就是对AngularJS ng-open 指令的资料整理,后续继续补充。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzxfzw.html