练习使用angularjs实现一个select下拉列表: <div ng-app="selectApp" ng-controller="selectController"> <select ng-model="mySelect" ng-options="sd for sd in selectData"></select> </div> Html Code var selectAp…
ng-options一般有以下用法: 对于数组: label for value in array select as label for value in array label group by group for value in array label disable when disable for value in array label group by group for value in array track by trackexpr label disable when d…