AngularJS Tutorial - ng-repeat to create table cells








The following code shows how to use ng-repeat to create table cells.

Example


<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
<style type='text/css'>
tr:nth-child(odd) {<!-- w  ww  .  j  av a  2  s . c om-->
    background-color : green;
}
tr:nth-child(even) {
    background-color : blue;
}
</style>
</head>
<body ng-app="myApp">
  <div ng-controller="MyCtrl">
  <table>
    <tr ng-repeat="item in items">
        <td>{{item}}</td>
    </tr>
  </table>
</div>
<script type='text/javascript'>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
    $scope.items = ['foo', 'bar', 'foobar'];
}
</script>
</body>
</html>

The code above is rendered as follows: