0
嗨循環中的我有我的表之一以下代碼:兩個一個單臺TR
<div class="col-md-4">
<h2 align="center">Severity</h2>
<table class="table table-hover paleblue">
<tr style="background-color: #eb0000; color:white">
<th width="10px">Rank</th>
<th>Name</th>
<th>Criteria</th>
</tr>
{%verbatim%}
<tr ng-repeat="s in siverity track by $index">
<td>
{{$index+1}}
</td>
<td>
<div ng-repeat="s in siverity" class="col-md-12" style="height:100px">
{{s}}<br>
<textarea class="form-control">{{s}}</textarea>
</div>
</td>
<td>
<div ng-repeat="c in criteria" class="col-md-12" style="height:100px">
{{c}}<br>
<textarea class="form-control">{{c}}</textarea>
</div>
</td>
</tr>
{%endverbatim%}
</table>
</div>
腳本:
$scope.siverity = ['A', 'B', 'C'];
$scope.criteria = ['D', 'E', 'F'];
與HTML的問題是,它實際上是創造3 tds裏面的tr而不是1.我怎樣才能解決這個問題,這樣我就可以得到一個表1和2的tds對應的表?提前致謝。
爲什麼在表中使用DIV標籤?這是錯誤的。 –
,因爲這些值實際上是動態的 – vellattukudy
可以說,如果我刪除所有的div,我會得到我的結果,但標準的值來自另一個列表,我如何循環,以便標準將有價值? – vellattukudy