使用 jQuery,我如何检测元素是否被“鼠标悬停”?以及该元素的任何子元素?

发布于 2024-11-28 11:25:55 字数 657 浏览 1 评论 0原文

这是我到目前为止所拥有的:

var hoveredElement; //none per default

;(function($){
$.fn.isHovered = function(){
    return (hoveredElement.length && $( this )[0] === hoveredElement[0] );
};

})(jQuery);


$(document).mouseover( function(e){
    hoveredElement = $(e.target);
});


$(document).mouseover( function(e){
    console.log( $(this).isHovered() );
});

基本上我有以下结构:

<div id='one'>
    <div id="two">
        <div id="three">
            three
        </div>
    </div>
</div>

当我将鼠标悬停在 2 上时,我想返回 true,无论我将鼠标悬停在 #two 还是 #third 上。

我该如何做到这一点?

Here is what I have so far:

var hoveredElement; //none per default

;(function($){
$.fn.isHovered = function(){
    return (hoveredElement.length && $( this )[0] === hoveredElement[0] );
};

})(jQuery);


$(document).mouseover( function(e){
    hoveredElement = $(e.target);
});


$(document).mouseover( function(e){
    console.log( $(this).isHovered() );
});

Basically I have the following structure:

<div id='one'>
    <div id="two">
        <div id="three">
            three
        </div>
    </div>
</div>

When I mouse over two, i'd like to return true whether it is #two or #three that I am mousing over.

How do i accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

看春风乍起 2024-12-05 11:25:55

使用 jQuery .hover() API:http://api.jquery.com/将鼠标悬停/,您应该能够通过$(this)查看当前对象。

像这样的东西:

$('div').hover( 
function() { console.log('hovering over %o', $(this) }, 
function() { console.log('leaving') }
);

Use the jQuery .hover() API: http://api.jquery.com/hover/ and you should be able to view the current object via $(this).

Something like:

$('div').hover( 
function() { console.log('hovering over %o', $(this) }, 
function() { console.log('leaving') }
);
话少情深 2024-12-05 11:25:55

尝试查看 mouseentermouseleave 它应该给你你正在寻找的东西

Try to look into mouseenter, and mouseleave it should give you what you are looking for

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文