閱讀Mastering Web Development with Angular,我想每添加顏色奇和偶數行:與納克級,甚至添加顏色/奇
HTML
<div ng-controller="MyCtrl">
<table>
<tbody>
<tr ng-repeat="item in data" ng-class-even="'blue'"
ng-class-odd="'green'">
<td>{{item.name}}</td>
</tr>
</tbody>
</table>
</div>
的JavaScript
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
$scope.data = [{name: "Kevin", value: "1234"},
{name: "Bill", value:"444"}];
}
CSS
.green = {
color: green;
}
.blue = {
color: blue;
}
然而沒有顏色出現。此控制檯error出現,但我不知道任何缺少的模塊。
CSS ......他們溝等號! – tymeJV