angularjs的select使⽤及默认选中设置我最近在研究angularjs学习的道路上,那么今天也算个学习笔记吧!
1 ng-model="standardCourse.showHours"代替name
angular和angularjs2 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 = ity;
$scope.standardCourse.showHours= '1';
});
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。