国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

js中各瀏覽器中鼠標(biāo)按鍵值的差異

2019-11-20 23:52:08
字體:
供稿:網(wǎng)友
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中測試。

復(fù)制代碼 代碼如下:

<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。完全遵循標(biāo)準。
所有瀏覽器,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事件中均不能獲取到右鍵值。

以上可看到,判斷鼠標(biāo)按下了哪個鍵 ,應(yīng)該選擇合適的事件 。這里應(yīng)選mousedown/mouseup。Opera10中仍然無法獲取到中鍵的值,因為Opera壓根不觸發(fā)中鍵的事件(mousedown,mouseup,click,dbclick)。

以下代碼將IE6/7/8的值轉(zhuǎn)換成符合W3C標(biāo)準的

復(fù)制代碼 代碼如下:

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;
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 阿拉善左旗| 沿河| 分宜县| 灵武市| 瑞昌市| 通辽市| 太谷县| 厦门市| 格尔木市| 内丘县| 郎溪县| 綦江县| 镇巴县| 巩留县| 温宿县| 阜城县| 拜泉县| 苍山县| 开江县| 闵行区| 台南县| 广灵县| 南投市| 大悟县| 凌海市| 水富县| 常州市| 甘泉县| 南汇区| 保靖县| 专栏| 兴文县| 东乡族自治县| 新源县| 荔波县| 日土县| 雷州市| 阿拉善左旗| 乐东| 邹城市| 洛阳市|