angular.js - AngularJS Select預設值?
天蓬老师
天蓬老师 2017-05-15 17:07:59
0
2
527

AngularJS Select綁定的是物件:

$scope.cars = {
car01 : {brand : "Ford", model : "Mustang", color : "red"},
car02 : {brand : "Fiat", model : "500", color : "white"},
car03 : {brand : "Volvo", model : "XC90", color : "black"}
};
<select ng-model="selectedCar" ng-options="y.brand for (x, y) in cars"></select>

現在想給select一個預設值怎麼設定呢?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回覆(2)
世界只因有你
<select ng-model="selectedCar" ng-options="y.brand for (x, y) in cars>
</select>
$scope.selectedCar = $scope.cars.car01;

這樣就是預設選取第一項

漂亮男人

--請選擇--選項>

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!