예
읽기 전용 입력 필드를 확인합니다 :
Click here to select BMW as your favorite car:
<input type="checkbox" ng-model="mySel">
<p>My Favourite car:</p>
<select>
<option>Volvo</option>
<option ng-selected="mySel">BMW</option>
<option>Ford</option>
</select>
»그것을 자신을 시도 정의 및 사용
ng-selected
지시어는 <선택> 목록에서 <옵션> 요소의 선택된 속성을 설정합니다.
내부 표현하면 옵션이 선택됩니다 ng-selected
속성이 true를 반환합니다.
ng-selected
지시문 사이의 값을 전환 할 수 있도록 필요한 true
과 false
. HTML에서는 설정할 수 없습니다 selected
에 속성을 false
(이 값의 상관없이 선택한 속성의 존재가 선택한 요소 수를).
통사론
<option ng-selected=" expression "></option>
<옵션> 요소에 의해 지원됩니다.
매개 변수 값
Value | Description |
---|---|
expression | An expression that will set the element's selected attribute if it returns true. |