gpt4 book ai didi

javascript - 检测鼠标是否不在 iframe 中的元素上

转载 作者:太空宇宙 更新时间:2023-11-03 23:14:27 26 4
gpt4 key购买 nike

我希望能够检测鼠标是否在某个 div 上。所以我这样做

if ($('#mydv').is(':hover')) {
//doSometing
});

如何检测鼠标是否在 div 上方?我还读到,如果元素是 iframe,这可能不起作用。有没有一种方法可以在 iframe 中进行这项工作?

最佳答案

使用hover()和标志,如

var isOver = false;
$('#mydv').hover(function() {
isOver = true;
}, function() {
isOver = false;
});
.
.
.
//elsewhere in your code you can use isOver to know whether the cursor is over or not

关于javascript - 检测鼠标是否不在 iframe 中的元素上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31197874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com