Jquery 将项目悬停在“a”上标签

发布于 2024-09-17 01:13:52 字数 125 浏览 3 评论 0原文

我有一个链接元素,当你将鼠标悬停在它上面时,会出现一个 div 。该 div 应该位于链接元素之上。当我移动鼠标时,显示的 div 会闪烁。有没有办法解决这个问题。我假设这是因为 div 现在覆盖了链接元素。

谢谢, C

I have a link element and when you hover over it a div appears. This div is meant to be over the link element. When I move my mouse the div that is showing flickers. Is there a way to fix this. I am assuming it is beacuse the div is now covering the link element.

Thanks,
C

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

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

发布评论

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

评论(3

‖放下 2024-09-24 01:13:52

我猜你正在使用这样的代码:

$("a").hover(function () { // Enter
    $("div").show();
}, function () { // Leave
    $("div").hide();
});

在这种情况下,你的猜测是正确的。如果 div 悬浮在 a 上,当 div 显示时会触发鼠标离开,因为鼠标开始在 a 上。 code>div 而不是在 a 上。然后,div 被隐藏,鼠标再次输入a...一切又重新开始。

如果您可以避免 div 出现在上面(例如使用 z-index),那就更简单了。

否则,我建议您执行以下操作:

$("a").mouseenter(function () {
    $("div").show();
});

$("div").mouseleave(function () {
    $("div").hide();
});

如果您的鼠标在打开时始终位于 div 上,那么如果鼠标离开,它可以自行关闭。

I guess you are using some code like this:

$("a").hover(function () { // Enter
    $("div").show();
}, function () { // Leave
    $("div").hide();
});

In this case, your guess is correct. If the div is floating over the a, the mouse leave is triggered when the div is displayed, because the mouse starts to be on the div and not on the a. Then, the div is hided, the mouse enter the a again... And all begins another time.

If you can avoid the div to appear over (with z-index, for example), it'll be more simple.

Otherwise, I suggest you do something like this:

$("a").mouseenter(function () {
    $("div").show();
});

$("div").mouseleave(function () {
    $("div").hide();
});

If your mouse will be always over the div when it's opened, then it can close itself if the mouse leaves.

原野 2024-09-24 01:13:52

听起来您没有测试 div 是否已经可见。您可以使用以下代码测试可见性:

if ($("div").is(":hidden")) {
    // make div visible here
}

希望这会有所帮助。

It sounds like you're not testing to see if the div is already visible or not. You test visibility using the following code:

if ($("div").is(":hidden")) {
    // make div visible here
}

Hope this helps.

自演自醉 2024-09-24 01:13:52

谢谢。这是我现在使用的代码...

$('area,#map-zoom').hover(function(){
$('#map-zoom').show();
},功能() {
$('#map-zoom').hide();
});

我也将悬停功能添加到出现的 div 中。

Thanks. Here is the code I am now using...

$('area,#map-zoom').hover(function(){
$('#map-zoom').show();
},function() {
$('#map-zoom').hide();
});

I have added the hover function to the appearing div aswell.

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