Angular.js Table


Angular.js Table

테이블 CSS 와 Repeat <style> table, td { border: 1px solid grey; border-collapse: collapse; padding: 5px;} table tr:nth-child(odd) { background-color: #f1f1f1;} table tr:nth-child(even) { background-color: #ffffff;} </style> <table> <tr ng-repeat="x in names"> <td ng-if="$odd">{{ x.Name }}</td> <td ng-if="$even">{{ x.Name }}</td> <td ng-if="$odd">{{ x.Country }}</td> <td ng-if="$even">{{ x.Country }}</td> </tr> </table> <script> var app = angular.module('myApp', []); app.controller('customersCtrl', ...



원문링크 : Angular.js Table