首页 > 代码库 > angularjs的select使用及默认选中
angularjs的select使用及默认选中
1 ng-model="standardCourse.showHours"代替name
2 ng-selected = "1"代替selected="selected",但问题是select下会多出一个无用的option
3 在数据准备时设置,$scope.standardCourse.showHours= ‘1‘;
解决多出的一个无用的option
<label for="_sel_show_hours">是否显示课时数</label>
<select id="sel_show_hours" ng-model="standardCourse.showHours" >
<option value="1" ng-selected = "1">显示</option>
<option value="0">不显示</option>
</select> radio也是 ng-checked="1",也需要准备数据时设置默认值
准备数据参考
$stateProvider.state(‘home.standardCourseAdd‘, {
url: "/standardCourse/add",
templateUrl: "/partials/ace/standardCourse/add.html",
controller: function ($rootScope, $http, $scope, $location, $anchorScroll, $stateParams, $state, $timeout, $compile, Upload) {
fnPost($scope, $state, $http, {‘name‘: ‘‘}, ‘/standardCourse/toAdd.do‘, function (success, data) {
$scope.standardCourse = data.entity;
$scope.standardCourse.showHours= ‘1‘;
}); null
angularjs的select使用及默认选中
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。