<!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=""> 點(diǎn)擊復(fù)選框選擇 BMW 選項(xiàng): <input type="checkbox" ng-model="mySel"> <p>我喜歡的車(chē):</p> <select> <option>Volvo</option> <option ng-selected="mySel">BMW</option> <option>Ford</option> </select> </body> </html>測(cè)試看看 ?/?
ng-selected 指令用于設(shè)置 <select> 列表中的 <option> 元素的 selected 屬性。
ng-selected
屬性的表達(dá)式返回 true 則選項(xiàng)被選中。
<option ng-selected="expression"></option>
<option> 元素支持該指令。
值 | 描述 |
---|---|
expression | 如果表達(dá)式為 true 則選項(xiàng)被選中 |