Örnek
Hepsini kontrol etmek birini kontrol edin:
<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>
Kendin dene " Tanımı ve Kullanımı
ng-checked
yönergesi ayarlar checked onay kutusu veya bir radiobutton vasfını.
Içerisindeki ifade eğer onay kutusu veya Radiobuton, kontrol edilecek ng-checked
özniteliği true döndürür.
ng-checked
yönergesi arasındaki değer kaydırmaya muktedir gerekir true
ve false
. HTML'sinde, ayarlayamıyor checked
etmek niteliğini false
(the presence of the checked attribute makes the element checked, regardless of it's value) .
Sözdizimi
<input type="checkbox|radio" ng-checked=" expression "></input>
Tarafından desteklenen <input> tip onay kutusu veya radyo unsurları.
Parametre Değerleri
değer | Açıklama |
---|---|
expression | Doğru dönerse öğenin kontrol özelliğini ayarlar bir ifade. |