$(document).ready(function() {
$(".menu li a").hover(function() {
$(this).fadeTo("slow", 0.33);
});
});
我想实现 mouseover 和 mouseout 但我做不到:(
$(document).ready(function() {
$(".menu li a").hover(function() {
$(this).fadeTo("slow", 0.33);
});
});
我想实现 mouseover 和 mouseout 但我做不到:(
$(document).ready(function()
$(".menu li a").hover(function() {
$(this).fadeTo("slow", 0.33);
}, function() {
$(this).fadeIn("slow");
});
});
$(document).ready(function() {
$(".menu li a").hover(function() {
// do something for mouseover
}, function() {
// do something for mouseout
});
});