如何编写onmouseover;
的函数提前致谢!
答案 0 :(得分:3)
$('.whatever').on('mouseenter', function() {
$('img', this).css('opacity', '0.5');
}).on('mouseleave', function() {
$('img', this).css('opacity', '1');
});
但是,使用纯CSS可以做同样的事情:
.whatever:hover img { opacity: 0.5; }
答案 1 :(得分:2)
这是一种可能性:
$("#yourDiv").bind("mouseover", function(){
$(this).find("img").css("opacity", "0.5");
});