编程语言
首页 > 编程语言> > javascript-Firefox中的jQuery Mouseenter / Mouseleave问题

javascript-Firefox中的jQuery Mouseenter / Mouseleave问题

作者:互联网

我仅在Firefox中遇到mosueenter / mouseleave事件的问题…

http://www.screencast.com/users/StanleyGoldman/folders/Jing/media/be3572de-9c72-4e2a-8ead-6d29b0764709

<HTML>
    <HEAD>
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.js"></script>
        <script>
            $(document).ready(function() {
                $("#theDiv").mouseenter(function() {
                    $("#output").append('mouseenter<br>'); 
                });
                $("#theDiv").mouseleave(function() {
                    $("#output").append('mouseleave<br>');
                });
            });

        </script>
    </HEAD>
    <BODY>

    <div id="theDiv" style="position:relative; height: 300px; width:300px; background-color:Black;">
        <input type="text" style="position:absolute; top: 40px;" />

        <div style="position:absolute; top:100px; height:100px; width:100px; background-color:Red; overflow:auto;">
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        <p>Content</p>
        </div>
    </div>

    <div id="output"></div>

    </BODY>
</HTML>

我只想知道鼠标何时离开包含的DIV.
但是,如果您将鼠标真正快速移至文本框上方或将鼠标移至div滚动条上方,则事件将触发.

– 编辑 –

$("#theDiv").hover(function() {
    $("#output").append('hoverin<br>');
}, function() {
    $("#output").append('hoverout<br>');
});

我尝试了以下悬停.
它似乎只在Firefox中遭受相同的问题.

解决方法:

此行为与Firefox 3.6中已修复的firefox bug有关. jQuery尝试使用innerElement函数(通过jQuery源代码搜索)来处理此错误,但是解决方案并不完美.

标签:firefox,mouseenter,mouseleave,javascript,jquery
来源: https://codeday.me/bug/20191106/2001560.html