IE中的鼠标位置

Mouse positions in IE

本文关键字:位置 鼠标 IE      更新时间:2023-09-26

当光标只到达浏览器顶部(导航到选项卡)时,而不是移动到任务栏和滚动条时,我必须显示一条警告消息。我尝试了pageXpageY,但在Internet Explorer中的值不同。请帮助我解决这个问题。

$('html').mouseleave(function(e) {
   if((e.pageY <= 5+$(window).scrollTop() && e.pageX >= ($(window).width() * 0/100 ))){
        alert("hai");
   }
)

这在firefox和chrome中显示警报,但在ie 中不显示

尝试jQuery

var currentMousePos = { x: -1, y: -1 };
$(document).mousemove(function(event) {
    currentMousePos.x = event.pageX;
    currentMousePos.y = event.pageY;
});

有了这个,你可以在客户端上获得鼠标的位置