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

AngularJS基础 ng-options 指令详解

程序员文章站 2022-07-29 16:45:29
angularjs ng-options 指令 angularjs 实例 使用数组元素填充下拉列表: &...

angularjs ng-options 指令

angularjs 实例

使用数组元素填充下拉列表:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>

<div ng-app="myapp" ng-controller="myctrl">

<select ng-model="selectedname" ng-options="item for item in names">
</select>

</div>

<script>
var app = angular.module('myapp', []);
app.controller('myctrl', function($scope) {
  $scope.names = ["emil", "tobias", "linus"];
});
</script>

<p>该实例演示了如何使用 ng-options 指令填充下拉列表。</p>

</body>
</html>

定义和用法

ng-options 指令用于使用 <options> 填充 <select> 元素的选项。

ng-options 指令使用数组来填充下拉列表,多数情况下与 ng-repeat 指令一起使用。

语法

<select ng-options="array expression"></select>

<details> 元素支持该指令。

参数值

描述
array expression 数组中为 select 元素填充选项的表达式。

以上就是对angularjs ng-options资料的整理,后续继续补充。