我希望能够检测到鼠标是否超过某个div。所以我这样做
if ($('#mydv').is(':hover')) {
//doSometing
});
如何检测鼠标是否超过div?另外我读到如果元素是iframe,这可能不起作用。有没有办法让这个工作在iframe中?
答案 0 :(得分:3)
使用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