<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <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 <p>點擊 "Check all" 選擇所有的車。</p> </body> </html>測試看看 ?/?
ng-checked 指令用于設(shè)置復(fù)選框(checkbox)或單選按鈕(radio)的 checked 屬性。
如果 ng-checked 屬性返回 true,復(fù)選框(checkbox)或單選按鈕(radio)將會被選中。
<input type="checkbox|radio" ng-checked="expression"></input>
type 為 checkbox 或 radio 的 <input> 元素支持。
值 | 描述 |
---|---|
expression | 如果返回 true,將會選中元素選項。 |