angularjs的select使用及默认选中设置

2019-11-22,,

我最近在研究angularjs学习的道路上,那么今天也算个学习笔记吧!

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';
      }); 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持北冥有鱼。

您可能感兴趣的文章:

  • AngularJS service之select下拉菜单效果
  • AngularJS实现select的ng-options功能示例
  • AngularJS Select(选择框)使用详解
  • angularjs 实现带查找筛选功能的select下拉框实例
  • Angularjs实现带查找筛选功能的select下拉框示例代码
  • AngularJS基础 ng-selected 指令简单示例
  • AngularJS入门教程之Select(选择框)详解
  • AngularJS select设置默认值的实现方法

《angularjs的select使用及默认选中设置.doc》

下载本文的Word格式文档,以方便收藏与打印。