AngularJS ng-options와 ng-repeat > 퍼블리싱강좌

퍼블리싱강좌

AngularJS ng-options와 ng-repeat 정보

AngularJS AngularJS ng-options와 ng-repeat

본문

AngularJS ng-options와 ng-repeat

이 ng-repeat지시문을 사용하여 동일한 드롭 다운 목록을 만들 수도 있습니다 .


<select>
<option ng-repeat="x in names">{{x}}</option>
</select>

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="myCtrl">

<select>
<option ng-repeat="x in names">{{x}}</option>
</select>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
    $scope.names = ["Emil", "Tobias", "Linus"];
});
</script>

<p>This example shows how to fill a dropdown list using the ng-repeat directive.</p>

</body>
</html>
추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로