自定義html元素鼠標(biāo)右鍵菜單
實(shí)現(xiàn)思路
在觸發(fā)contextmenu事件時(shí),取消默認(rèn)行為(也就是阻止瀏覽器顯示自帶的菜單),獲取右鍵事件對(duì)象,來(lái)確定鼠標(biāo)的點(diǎn)擊位置,作為顯示菜單的left和top值
編碼實(shí)現(xiàn)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script> window.onload = function(){ var menu = document.getElementById('menu'); document.body.oncontextmenu = function(e){ // 自定義body元素的鼠標(biāo)事件處理函數(shù) var e = e || window.event; e.preventDefault(); //阻止系統(tǒng)右鍵菜單 IE8-不支持 // 顯示自定義的菜單調(diào)整位置 let scrollTop = document.documentElement.scrollTop || document.body.scrollTop;// 獲取垂直滾動(dòng)條位置 let scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft;// 獲取水平滾動(dòng)條位置 menu.style.display = 'block'; menu.style.left = e.clientX + scrollLeft + 'px'; menu.style.top = e.clientY + scrollTop + 'px'; } // 鼠標(biāo)點(diǎn)擊其他位置時(shí)隱藏菜單 document.onclick = function(){ menu.style.display = 'none'; } } </script> <style> *{ margin: 0; padding: 0; } p{ margin-top: 200px; } ul li{ list-style-type: none; margin: 10px 0; text-align: center; } #menu{ border:1px solid #ccc; background: #eee; position: absolute; // 設(shè)置菜單為絕對(duì)位置 width: 100px; height: 120px; display: none; } </style> </head> <body > <div id="box" >讓body元素出現(xiàn)滾動(dòng)條用的div</div> <div id="menu"> <ul> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >分享</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >收藏</a></li> <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >舉報(bào)</a></li> </ul> </div> </body> </html>
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)站題目:JavaScript自定義html元素鼠標(biāo)右鍵菜單功能-創(chuàng)新互聯(lián)
本文來(lái)源:http://sd-ha.com/article22/jjjcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、ChatGPT、網(wǎng)站內(nèi)鏈、網(wǎng)站排名、關(guān)鍵詞優(yōu)化、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容