我对 jQuery 相当陌生,我真的无法理解这一点。
我正在尝试选择<a href="contact"><div id="res">Reserveren</div></a>
.
这是我的 jQuery 代码:
$(document).ready(function() {
$('#res').hover(
function () {
$(this).animate({backgroundColor: "#fff" });
},
function () {
$(this).animate({backgroundColor: "#000" });
}
});
但是,没有任何效果。它根本没有改变任何东西......我做错了什么?
在此先感谢,巴特