最新的Web開發教程
 

AngularJS NG-檢查指令


選中一個要檢查他們都:

<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指令是必要能夠為值之間轉換truefalse 。 在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.