例
選中一個要檢查他們都:
<body ng-app="">
<p>My cars:</p>
<input type="checkbox"
ng-model="all"> Check all<br><br>
<input type="checkbox"
ng-checked="all">Volvo<br>
<input type="checkbox"
ng-checked="all">Ford<br>
<input type="checkbox"
ng-checked="all">Mercedes
</body>
試一試» 定義和用法
在ng-checked
指令設置一個複選框或單選按鈕的checked屬性。
複選框,或單選按鈕,如果裡面的表達將檢查ng-checked
屬性返回true。
的ng-checked
指令是必要能夠為值之間轉換true
和false
。 在HTML中,你可以不設置checked
屬性為false
(checked屬性的存在使得檢查元素,不管它的價值)。
句法
<input type="checkbox|radio" ng-checked=" expression "></input>
通過的<input>類型選框或元素的支持。
參數值
Value | Description |
---|---|
expression | An expression that will set the element's checked attribute if it returns true. |