javascript實(shí)現(xiàn)在某個(gè)元素上阻止鼠標(biāo)右鍵事件的方法和實(shí)例
來(lái)源:易賢網(wǎng) 閱讀:813 次 日期:2014-08-15 14:49:18
溫馨提示:易賢網(wǎng)小編為您整理了“javascript實(shí)現(xiàn)在某個(gè)元素上阻止鼠標(biāo)右鍵事件的方法和實(shí)例”,方便廣大網(wǎng)友查閱!

最近在做一個(gè)小東西的時(shí)候需要在某一個(gè)元素上“右擊”觸發(fā)一個(gè)自定義菜單,通過自定義的菜單對(duì)右擊的條目進(jìn)行編輯。這就要求屏蔽默認(rèn)的右鍵菜單

IE和FF下面的元素都有oncontextmenu這個(gè)方法,在FF下面只要通過event.preventDefault()方法就可以輕松實(shí)現(xiàn)這個(gè)效果。IE并不支持這個(gè)方法,在IE下面一般是通過觸發(fā)方法后return false來(lái)實(shí)現(xiàn)阻止默認(rèn)事件的。

通常我們使用阻止右鍵事件是在全局阻止,即在document層面就將右鍵攔截,現(xiàn)在我想要實(shí)現(xiàn)的效果是只在特定的區(qū)域阻止默認(rèn)的右鍵事件,而其他區(qū)域并不影響。

通過實(shí)驗(yàn)我發(fā)現(xiàn)要是在IE下綁定的方法中return false后在document層面上可以實(shí)現(xiàn)阻止右鍵的默認(rèn)行為。但是具體到某一個(gè)元素比如div,則失效。

最后通過查找手冊(cè)發(fā)現(xiàn),IE下的event對(duì)象有一個(gè)returnValue屬性,如果將這個(gè)屬性設(shè)置為false則不會(huì)觸發(fā)默認(rèn)的右鍵事件。類似如下:

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

event.returnValue = false;

只要加入這句就實(shí)現(xiàn)了我想要的效果。完整Demo代碼:

01 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

02 <html xmlns="http://www.w3.org/1999/xhtml">

03 <head>

04 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

05 <title>在某個(gè)元素上阻止鼠標(biāo)右鍵默認(rèn)事件DEMO</title>

06 <style>

07 body{font-size:12px; line-height:24px; font-family:Arial, Helvetica, sans-serif;}

08 #activeArea{width:300px;height:200px; background:#06C; color:#fff;}

09 #cstCM{ width:120px; background:#eee; border:1px solid #ccc; position:absolute; }

10 #cstCM ul{margin:0; padding:0;}

11 #cstCM ul li{ list-style:none;padding:0 10px; cursor:default;}

12 #cstCM ul li:hover{ background:#009; color:#fff;}

13 .splitTop{ border-bottom:1px solid #ccc;}

14 .splitBottom{border-top:1px solid #fff;}

15 </style>

16 <script>

17 function customContextMenu(event){

18 event.preventDefault ? event.preventDefault():(event.returnValue = false);

19 var cstCM = document.getElementById('cstCM');

20 cstCM.style.left = event.clientX + 'px';

21 cstCM.style.top = event.clientY + 'px';

22 cstCM.style.display = 'block';

23 document.onmousedown = clearCustomCM;

24 }

25 function clearCustomCM(){

26 document.getElementById('cstCM').style.display = 'none';

27 document.onmousedown = null;

28 }

29 </script>

30 </head>

31

32 <body>

33 <div id="cstCM" style="display:none;">

34 <ul>

35 <li>View</li>

36 <li>Sort By</li>

37 <li class="splitTop">Refresh</li>

38 <li class="splitBottom">Paste</li>

39 <li class="splitTop">Paste Shortcut</li>

40 <li class="splitBottom">Property</li>

41 </ul>

42 </div>

43 <div id="activeArea" oncontextmenu = "customContextMenu(event)">

44 Custom Context Menu Area

45 </div>

46 </body>

47 </html>

這個(gè)效果兼容IE6+,F(xiàn)F,但是opera壓根就沒有oncontextmenu這個(gè)方法所以也就不能簡(jiǎn)單的通過這個(gè)方法實(shí)現(xiàn),要想實(shí)現(xiàn)還需要通過其他的手段。

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)