【发布时间】:2017-10-11 03:04:23
【问题描述】:
我有一张带有一些样式的桌子。就像:
<table class="table_design" id="cart">
<tr>
<td>something</td>
<td>something else</td>
</tr>
</table>
我试过了:
$("#cart").animate({backgroundColor: '#FF0000'}, 'slow');
和
$("#cart").effect("highlight", {}, 3000);
但是,它们都不起作用。
你有什么推荐的?
【问题讨论】:
-
您可能还想添加悬停事件或单击事件,具体取决于您的功能。
标签: jquery animation html-table effect