0
$(document).ready(function() {
$(".menu li a").hover(function() {
$(this).fadeTo("slow", 0.33);
});
});

我想实现 mouseover 和 mouseout 但我做不到:(

4

2 回答 2

2
$(document).ready(function() 
    $(".menu li a").hover(function() {
        $(this).fadeTo("slow", 0.33);
    }, function() {
        $(this).fadeIn("slow");
    });
});
于 2012-06-29T15:44:21.637 回答
1
$(document).ready(function() {
   $(".menu li a").hover(function() {

      // do something for mouseover

   }, function() {

     // do something for mouseout

   });
});
于 2012-06-29T15:43:24.130 回答