目前,我在鼠标移动时“做事”。但是,如果用户调整浏览器大小或向下滚动浏览器,我也想做同样的事情。jQuery(document).bind('mousemove',function(e){ var x, y; x = e.pageX; // x coord y = e.pageY; // y coord //other stuff });
我试着做
jQuery(document).bind('mousemove resize scroll',function(e){...
但它没有用。我也试过
jQuery(document, window).bind('mousemove resize scroll',function(e){...
但它也没有用。
我也知道你可以使用检测滚动
$(window).scroll(function(){
并使用检测调整大小
$(window).resize(function() {
但是如果我使用这些检测,我将没有“e”参数来获取鼠标的 x 和 y 坐标
如何将所有 3 个事件全部绑定到一个函数中?
谢谢