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

前端之家收集整理的这篇文章主要介绍了angularjs的select使用及默认选中设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

1 ng-model="standardCourse.showHours"代替name

2 ng-selected = "1"代替selected="selected",但问题是select下会多出一个无用的option

3 在数据准备时设置,$scope.standardCourse.showHours= '1';

解决多出的一个无用的option

显示课时数

radio也是 ng-checked="1",也需要准备数据时设置默认值

准备数据参考

url: "/standardCourse/add",templateUrl: "/partials/ace/standardCourse/add.html",controller: function ($rootScope,$http,$scope,$location,$anchorScroll,$stateParams,$state,$timeout,$compile,Upload) { fnPost($scope,{'name': ''},'/standardCourse/toAdd.do',function (success,data) { $scope.standardCourse = data.entity; $scope.standardCourse.showHours= '1'; });

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

原文链接:https://www.f2er.com/js/40109.html

猜你在找的JavaScript相关文章