js中各瀏覽器中滑鼠按索引值的差異

來源:互聯網
上載者:User

W3C DOM-Level-2 定義如下

W3C DOM 寫道

During mouse events caused by the depression or release of a mouse button, button is used to indicate which mouse button changed state. The values for button range from zero to indicate the left button of the mouse, one to indicate the middle button if present, and two to indicate the right button. For mice configured for left handed use in which the button actions are reversed the values are instead read from right to left.

其描述的很明確,0,1,2分別代表左,中,右三個鍵。以下分別在mousedown,mouseup,click,dbclick中測試。
複製代碼 代碼如下:
<p id="p1">Test mousedown</p>
<p id="p2">Test mouseup</p>
<p id="p3">Test click</p>
<p id="p4">Test dbclick</p>
<script type="text/javascript">
function $(id){return document.getElementById(id)}
var p1 = $('p1'), p2 = $('p2'), p3 = $('p3'), p4 = $('p4');
p1.onmousedown = function(e){
e = window.event || e;
alert(e.button);
}
p2.onmouseup = function(e){
e = window.event || e;
alert(e.button);
}
p3.onclick = function(e){
e = window.event || e;
alert(e.button);
}
p4.ondbclick = function(e){
e = window.event || e;
alert(e.button);
}
</script>

即:
IE6/7/8中,mousedown/mouseup 事件中擷取左鍵的值為1,click事件中擷取的卻是0。
其它瀏覽器,mousedown/mouseup/click 事件中擷取左索引值均為0。完全遵循標準。
所有瀏覽器,dbclick事件中均無法擷取

即:
IE6/7/8中,mousedown/mouseup 事件中擷取中鍵的值為4。
IE6/7中,click事件無法擷取中鍵的值。IE8則可以,但值為0。
Firefox3.6/Chrome7/Safari5中,mousedown/mouseup 事件中擷取中索引值為1。
Chrome7/Safar5中,click事件也能擷取中索引值,亦為1。
Opera10中無法擷取中索引值。

即:
所有瀏覽器,mousedown/mouseup事件中均能擷取右索引值,且都為2。
所有瀏覽器,click/dbclick事件中均不能擷取到右索引值。

以上可看到,判斷滑鼠按下了哪個鍵 ,應該選擇合適的事件 。這裡應選mousedown/mouseup。Opera10中仍然無法擷取到中鍵的值,因為Opera壓根不觸發中鍵的事件(mousedown,mouseup,click,dbclick)。

以下代碼將IE6/7/8的值轉換成符合W3C標準的
複製代碼 代碼如下:
var ie678 = !-[1,];
function getButton(e){
var code = e.button;
var ie678Map = {
1 : 0,
4 : 1,
2 : 2
}
if(ie678){
return ie678Map[code];
}
return code;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.