zoukankan      html  css  js  c++  java
  • 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';
                });  




  • 相关阅读:
    手机抓包
    基础数据-wiki
    Laravel异常日志
    用户设备、UA检测 相关
    yum安装的nginx新增模块http_image_filter_module笔记
    nginx 配置图片自动裁剪
    PHP中使用ffmpeg截取视频图片笔记
    采集乱七八糟记录下
    Laravel学习笔记之session使用
    html5 新增表单类型
  • 原文地址:https://www.cnblogs.com/stit/p/6367898.html
Copyright © 2011-2022 走看看