Ultimele tutoriale de dezvoltare web
 

AngularJS Directiva-ng cu handicap


Exemplu

Dezactiva / activa câmpul de intrare:

Disable form fields: <input type="checkbox" ng-model="all">
<br>
<input type="text" ng-disabled="all">
<input type="radio" ng-disabled="all">
<select ng-disabled="all">
<option>Female</option>
<option>Male</option>
</select>
Încearcă - l singur »

Definiție și utilizare

ng-disabled directiva stabilește disabled atributul unui câmp de formular (input, select, or textarea) de (input, select, or textarea) .

Câmpul formular va fi dezactivat dacă expresia în interiorul ng-disabled atribut returneaza true.

ng-disabled cu true false ng-disabled directiva este necesară pentru a fi în măsură să schimbe valoarea între true și false . In HTML, nu puteți seta disabled atributul la false (the presence of the disabled attribute makes the element disabled, regardless of it's value) cu (the presence of the disabled attribute makes the element disabled, regardless of it's value) acestuia (the presence of the disabled attribute makes the element disabled, regardless of it's value) .


Sintaxă

<input ng-disabled=" expression "></input>

Suportat de <input>, <selectați> și <textarea> elemente.


Valorile parametrilor

Valoare Descriere
expression O expresie care se va seta atributul dezactivat elementului dacă returnează adevărat.