0

我有一个像这样的简单代码:

<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插件)谢谢

4

1 回答 1

2
$(document).ready(function () {
    $('#Button1').bind('click', function () {
       $('#tr1').animate({ backgroundColor: "aqua" },800)
             .animate({backgroundColor: "white"},800);
     });
});​

这适用于谷歌浏览器......试试看

于 2012-06-06T19:32:27.560 回答