Angular.js Table


Angular.js Table

셀렉트박스 <div ng-app="App" ng-controller="Ctrl"> <select ng-model="selectedName" ng-options="x for x in names"> </select> <select><option ng-repeat="x in names">{{x}}</option> </select> </div> <script> var app = angular.module('App', []); app.controller('Ctrl', function($scope) { $scope.names = ["1", "2", "3"]; }); </script> <div ng-app="myApp" ng-controller="myCtrl"> <select ng-model="selectedCar" ng-options="x.model for x in cars"> </select> <h1>You selected: {{selectedCar.model}}</h1> <p>Its col...



원문링크 : Angular.js Table