我有以下html:
<img class="img-polaroid img-hover" src="/images/147/09e65aac97caf00c5414593719d0e1b4-medium.jpg?1376027188" background-color="yellow">
和css
.img-hover:hover{
background-color: $green-highlight-1;
cursor: pointer;
}
并希望转换为jquery,以便我们可以更好地控制颜色(并为其设置动画)。类似的东西:
$('.img-hover').on('mouseover', function(){
console.log("here i am in img-hover");
$(this).attr('background-color','yellow');
});
但这不起作用(console.log有效)。如何以这种方式设置背景颜色?
答案 0 :(得分:1)
你想要
$(this).css('background-color','yellow');
答案 1 :(得分:0)
使用css
代替attr
$('.img-hover').on('mouseover', function(){
console.log("here i am in img-hover");
$(this).css("background-color", "yellow");
});
答案 2 :(得分:0)
使用.css()
方法,例如:
$('.img-hover').mouseover(function(){
$(this).css('backgroundColor', ' yellow');
});