例
通過點擊一個複選框顯示/隱藏一個<詳細>列表:
<input type="checkbox" ng-model="showDetails">
<details ng-open="showDetails">
<summary>Copyright 1999-2016.</summary>
<p> - by
Refsnes Data. All Rights Reserved.</p>
</details>
試一試» 定義和用法
在ng-open
指令設置一個細節列表的開放屬性。
如果NG打開屬性中的表達式返回true詳細名單將是可見的。
句法
<details ng-open=" expression ">...</details>
由<詳細>元素的支持。
參數值
Value | Description |
---|---|
expression | An expression that will set the element's open attribute if it returns true. |