最新的Web開發教程
 

AngularJS吳開指令


通過點擊一個複選框顯示/隱藏一個<詳細>列表:

<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.