对jenter中mouseenter / leave和hover的行为感到困惑

时间:2013-10-09 11:09:43

标签: jquery jquery-hover mouseenter

我正在查看jQuery文档,发现当我尝试将两个函数传递到 hover() 时,第一个函数类似于 < em> mouseenter() ,第二个行为类似于 mouseleave() 。请查看以下代码段。

$(document).ready(function(){
    $('div').hover(
        function(){
            $(this).fadeTo("fast", 1);
        },
        function(){
            $(this).fadeTo("fast", 0.25);
        }
    );
});

类似
$(document).ready(function(){
    $('div').mouseenter(function(){
        $(this).fadeTo("fast", 1);
    });
    $('div').mouseleave(function(){
        $(this).fadeTo("fast", 0.25);
    });
});

实际上这两者有什么区别?

0 个答案:

没有答案