欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS select设置默认值的实现方法

程序员文章站 2022-07-06 21:20:05
angularjs的select设置默认值 在使用angular时候使用select标签时会遇到绑定数据指定默认显示值可这样实现

angularjs的select设置默认值

在使用angular时候使用select标签时会遇到绑定数据指定默认显示值可这样实现

<!doctype html> 
<html ng-app="noteapp" ng-controller="notectrl"> 
<head> 
 
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
<meta http-equiv="description" content="this is my page"> 
<meta http-equiv="content-type" content="text/html; charset=utf-8"> 
<script type="text/javascript" src="../plugins/angular.min.js"></script> 
 
</head> 
<body ng-app="noteapp" ng-controller="notectrl"> 
  <select ng-options="act.id as act.name for act in typelist" 
    ng-model="znotevo.type"></select> 
 
</body> 
<script type="text/javascript"> 
  angular.module("noteapp", []).controller("notectrl", function($scope) { 
    $scope.typelist = [ { 
      id : '01', 
      name : "任务" 
    }, { 
      id : '02', 
      name : "日志" 
    }, { 
      id : '03', 
      name : "会议" 
    }, { 
      id : '04', 
      name : "学习" 
    }, { 
      id : '05', 
      name : "总结" 
    }, { 
      id : '99', 
      name : "其他" 
    } ]; 
    $scope.znotevo={}; 
    $scope.znotevo.type = "03"; 
  }); 
</script> 
</html> 

当我们选择类型是03时则默认是会议

AngularJS select设置默认值的实现方法

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持,如有疑问请留言或者到本站社区交流讨论,大家共同进步!