需要帮助mouseOut效果

时间:2010-10-28 20:21:17

标签: javascript jquery javascript-events

好吧所以下面的代码在将鼠标悬停在菜单上时会在网页上生成一个掩码,我的问题是如何编辑此代码以使掩码随着mouseout事件而消失?现在,我必须点击面具才能消失。感谢任何帮助,谢谢。

<script> 


$(function() {


    $("#menuwrapper").mouseover(function() {


        $(this).expose();

    });
});
</script>

3 个答案:

答案 0 :(得分:1)

$(function() { 

    $("#menuwrapper").mouseover(function() {      
        $(this).expose();  
    });

  $("#menuwrapper").mouseout(function() {     
        $(this).hide();  
    });

});

答案 1 :(得分:1)

或者更简洁:

$("#menuwrapper").hover( 
  function(){ $(this).expose(); },
  function(){ $(this).hide(); } // opposite of expose() function
);

答案 2 :(得分:0)

如果您使用expose library,则可以设置如下事件:

$("#menuwrapper").hover( 
  function(){ $(this).expose(); },
  function(){ $(this).unexpose(); } // opposite of expose() function
);