gpt4 book ai didi

Javascript:是否可以在事件处理程序之外获取鼠标位置?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:23:13 27 4
gpt4 key购买 nike

我想在超时回调中获取鼠标位置。

据我所知,这不能直接完成。一种解决方法可能是在 document.body 上设置 onmousemove 事件并保存此位置,稍后获取。然而,这会相当昂贵,而且不是最干净的方法。

最佳答案

我认为您必须做与@Oli 相同的事情,但是如果您使用 jQuery,它会容易得多。

http://docs.jquery.com/Tutorials:Mouse_Position

<script type="text/javascript">
jQuery(document).ready(function(){
$().mousemove(function(e){
$('#status').html(e.pageX +', '+ e.pageY);
});
})
</script>

关于Javascript:是否可以在事件处理程序之外获取鼠标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/433409/

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