JS特殊鼠标按钮

时间:2011-10-26 17:40:45

标签: javascript mouse mouseevent

我的鼠标侧面有两个按钮,其默认行为是“后退”和“前进”。

我想知道的是,是否有可能在JavaScript中检测到这些鼠标按钮的点击,或者这些是“特殊”按钮,类似于键盘的“Play”,“Volume Up”和“Wireless on” /关闭“按钮。

1 个答案:

答案 0 :(得分:3)

我不知道任何特定的鼠标事件。

但是,您可以通过检查event事件的mousedown对象轻松找到自己。 全屏小提琴:http://jsfiddle.net/dWfDL/1/show/

var text = typeof document.body.textContent != "undefined" ? "textContent" : "innerText";
window.onmousedown = function(e){
    //Inspect the `e` object, for example using a for(var i in e) loop, or:
    //console.log(e);
    var s = [];
    for(var i in e){
        try{
            if(e[i] !== null){
                if(i.toUpperCase() == i) continue; //Ignore constants
                if(typeof e[i] == "function") continue; //Ignore functions
                if(e[i].parentNode) continue; //Ignore elements
                if(e[i] === window) continue; //Ignore Window
            }
            s.push(i + " =\t\t" + e[i]);
        }catch(err){s.push(i + " \tERROR reading property.")}
    }
    e.preventDefault();
    s = s.join("\n") + "\n\n";
    document.body[text] = s + document.body[text];
}
//Double-click to wipe contents
window.ondblclick = function(){
    document.body[text] = "";
}