我有一个每周计划,我使用静态表手动更新。
<table>
<tr class="live al tv">
<td>October 2</td>
<td>12:30 pm</td>
<td class="competition"></td>
<td>Team A v Team B</td>
<td class="field">1</td>
</tr>
<tr class="be tv">
<td>October 2</td>
<td>6 pm</td>
<td class="competition"></td>
<td>Team C v Team D</td>
<td class="field">2</td>
</tr>
<tr class="ga tv">
<td>October 3</td>
<td>12:30 pm</td>
<td class="competition"></td>
<td>Team D v Team A</td>
<td class="field">3</td>
</tr>
<tr class="live de tv">
<td>October 3</td>
<td>6 pm</td>
<td class="competition"></td>
<td>Team C v Team B</td>
<td class="field">4</td>
</tr>
</table>
我有 2 个数组。第一个是类列表:
var compClass = new Array();
compClass[0] = 'al',
compClass[1] = 'be',
compClass[2] = 'ga',
compClass[3] = 'de';
第二个是比赛名单:
var competitions = new Array();
competitions[0] = 'alpha',
competitions[1] = 'beta',
competitions[2] = 'gamma',
competitions[3] = 'delta';
我要做的是将compClass
数组分别与数组匹配competitions
。我想要它,以便如果<tr>
该类与其中一个compClass
值匹配,则其子元素的内部文本<td class="competition"></td>
将使用相应的competitions
值自动填充。如果这没有任何意义,这是我正在尝试使用的 jQuery:
jQuery(function($){
$(document).ready(function() {
var rowClass = $('table tr[class*=" "]'),
compCell = $('td.competition'),
fieldCell = $('td.field');
function setCompetition() {
for(var i=0;i<compClass.length;++i) {
$('tr').attr('class',compClass[i]).each(function() {
this.children[2].innerHTML = competition[i];
});
}
}
});
});
我尝试使用$.map()
,但我无法让它工作。我是 jQuery 的新手——更不用说 JS 了。我究竟做错了什么?任何人都可以提供一些指导吗?任何帮助将不胜感激。