我的代码有一点问题。我有一堆具有不同背景颜色的类元素,名为“jq”。我在悬停时为背景颜色设置动画,然后将其恢复为原始颜色:这是 .css('backgroundColor') 应该获取悬停的任何给定 div 的颜色和 jq 类的颜色。相反,我将 div 背景恢复为白色。这是我的代码:
$(document).ready(function(){
$(".jq").hover(
var bgcol = $(this).css('backgroundColor');
function(){
$(this).animate({
backgroundColor: "#EAEAEA",
color:"#333"
},trans);
},
function() {
$(this).animate({
backgroundColor:'bgcol',
color:"#888"
},trans);
});
});