1.基本下拉效果(lable for value in array)
其中select标签中的ng-model属性必须有,其值为选中的对象或属性值。
usage:label for value in array
m1.controller("ngselect",['$scope',function($sc){
$sc.selected = '';
$sc.optData = [{
id: 10001,MainCategory: '男',ProductName: '水洗T恤',ProductColor: '白'
},{
id: 10002,MainCategory: '女',ProductName: '圓領短袖',ProductColor: '黃'
},{
id: 10003,ProductColor: '黃'
}];
}]);
选项,{{selected}}