0

我制作了一个脚本来注册拇指滚轮事件(如果您想知道,MX Master 2S)。但是,该脚本在 Chrome 中运行得非常好,但在 Firefox (Quantum) 中却没有。为什么呢?

var expression = /[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~#?&//=]*)?/gi;
var regex = new RegExp(expression);
var elements = document.getElementsByClassName('pagination'); // get the elements
var search = (elements[0].innerHTML.match(regex));

//alert(search);
if(document.addEventListener){
    document.addEventListener("mousewheel", MouseWheelHandler, false);
    document.addEventListener("DOMMouseScroll", MouseWheelHandler, false);
} else {
    document.attachEvent("onmousewheel", MouseWheelHandler);
}

function MouseWheelHandler(e) {
    var e = window.event || e;
  var ret = true;

  if (e.wheelDelta) {
    // Tilt to the left
    if (e.wheelDeltaX < 0) {
        str = window.location.toString();
        strsplit = str.split('/');
        preloc=Number(strsplit[4])+1;
        if (preloc > 0) {
        window.location.replace("https://somepage.com/page/"+preloc);}
        prelocstr=preloc.toString();
        if (prelocstr == "NaN") {
        window.location.replace(search[0]); }
      ret = false;
    }
    // Tilt to the right
    if (e.wheelDeltaX > 0) {
        str = window.location.toString();
        strsplit = str.split('/');
        preloc=Number(strsplit[4])-1;
        if (preloc > 0) {
        window.location.replace("https://somepage.com/page/"+preloc);}
      ret = false;
    }
  }

  event.returnValue = ret;
}

这个脚本是在 Tampermonkey 中制作的。谁能指出我的错误?提前致谢!

4

2 回答 2

2

有一个更新的标准来处理跨浏览器的鼠标滚轮事件:

https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent

https://developer.mozilla.org/en-US/docs/Web/Events/wheel

要使用此事件,请执行以下操作:

document.addEventListener("wheel", MouseWheelHandler);

而且没有必要:

e = window.event || e

该事件将在那里。

于 2018-04-08T07:09:11.350 回答
0

DOMMouseScroll适用于 Firefox,但它使用不同的 API。因此,您必须为 Firefox 编写单独的处理程序,而不是使用MouseWheelHandler, 或调整MouseWheelHandler以支持两者。

正如kshetline指出的那样,现在有一个适用于所有现代浏览器的新标准:https ://developer.mozilla.org/en-US/docs/Web/API/WheelEvent 。

其他两个选项在 Firefox 中不起作用,如下所述:

此功能是非标准的,不在标准轨道上。不要在面向 Web 的生产站点上使用它:它不适用于每个用户。实现之间也可能存在很大的不兼容性,并且行为可能会在未来发生变化。

来源:https ://developer.mozilla.org/en-US/docs/Web/Events/mousewheel

于 2018-04-08T06:43:09.643 回答