搜尋

首頁  >  問答  >  主體

angular.js - 怎樣利用ng-repeat的$index選取不同的style

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myCtrl">

<h1 style="color:contents[$index].color" ng-repeat="x in records">{{x.name}}+    {{contents[$index].color}}</h1>

<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
  $scope.records = [
  {name:"T"},
  {name:"D"},
  {name:"Z"}
  ];
$scope.contents=[
    {color:"red"},
    {color:"blue"},
    {color:"yellow"}
]
});

</script>

這是測試程式碼,以下是測試效果圖,請問怎麼才能讓字的顏色隨之改變呢?

天蓬老师天蓬老师2811 天前539

全部回覆(1)我來回復

  • 淡淡烟草味

    淡淡烟草味2017-05-15 17:03:45

    使用內建的ng-style指令,這個指令接受一個物件作為參數。

    所以,js不用更改,html像下面這樣寫:

    <h1 ng-style="contents[$index]" ng-repeat="x in records">{{x.name}} + {{contents[$index].color}}</h1>

    回覆
    0
  • 取消回覆