我需要使用angularjs在選擇框中突出顯示第一個值'fullName'。 我正在使用angularstrap選擇框。angularjs在選擇框中選擇第一個值
控制器,
$scope.accountInfo.owners = [
{
"accounts":null,
"phoneumber":null,
"email":null,
"fullName":"MITA DASGUPTA",
"mobilePhoneNumber":null,
"noteFlag":false,
"number":130000000484
}
]
模板,
<button type="button" class="btn btn-default" placeholder="Pleasae select"
data-ng-model="owner.fullName"
data-html="1"
bs-options="owner as owner.fullName for owner in accountInfo.owners"
bs-select>
Action <span class="caret"></span>
</button>
我試過這種方式,但該值默認情況下不選擇。
我卡在中間,任何機構都可以儘快幫忙。 – vishnu