我有一个像这样的简单代码:
<input id="Button1" type="button" value="button" />
<table border="1" cellpadding="0" cellspacing="0" width="400px">
<tr id="tr1">
<td>
1
</td>
<td>
nima
</td>
</tr>
<tr id="tr2">
<td>
2
</td>
<td>
agha
</td>
</tr>
<tr id="tr3">
<td>
3
</td>
<td>
ligha
</td>
</tr>
</table>
我写这段代码来改变第一行的背景
$(document).ready(function () {
$('#Button1').on('click', function () {
$('#tr1').stop()
.animate({ backgroundColor: "aqua" },800)
.stop()
.animate({backgroundColor: "white"},800);
});
});
但它只运行一次,当我再次点击时Button1
没有任何改变。哪里有问题?
(我使用jQuery.Color插件)谢谢