我是 jquery 的新手,我希望我的标签的背景颜色在悬停事件上发生变化。
到目前为止,这就是我所拥有的,但我无法回应......
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.animate-colors-min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".form_layout_button_box a").hover(
function(){
$(this).animate({backgroundColor: '#D8E4BC'},'slow')
},
function() {
$(this).animate({backgroundColor: '#C4D79B'},'slow')
});
});
</script>