这是我的代码。
Javascript:
var table = document.getElementById("Table-1");
var rowCount = table.rows.length;
for(var i=0;i<6;i++) {
row = table.insertRow(rowCount);
cell1 = row.insertCell(0);
cell1.name = "animate";
cell1.id = i ;
var content = document.createElement("output");
content.innerHTML = i ;
cell1.appendChild(content);
rowCount++;
// if (i%2 == 0) {
setInterval(function() {
$(input[name="animate"]).animate( { backgroundColor: '#f08080' }, 'slow')
.animate( { backgroundColor: 'red' }, 'slow');
}, 1000);
// }
}
HTML:
<table id="Table-1" border="1">
<tr>
<th><center>List</center></th>
</tr>
</table>
</p>
我用javascript构建了我的表,我想每秒为几行设置动画,但它不适用于所有行。但是,当我为特定行设置动画时它可以工作。
谢谢你。