自定義html元素滑鼠右鍵菜單 實現思路 在觸發contextmenu事件時,取消預設行為(也就是阻止瀏覽器顯示自帶的菜單),獲取右鍵事件對象,來確定滑鼠的點擊位置,作為顯示菜單的left和top值 編碼實現 <!DOCTYPE html> <html> <head> <meta charset=" ...
自定義html元素滑鼠右鍵菜單
實現思路
在觸發contextmenu事件時,取消預設行為(也就是阻止瀏覽器顯示自帶的菜單),獲取右鍵事件對象,來確定滑鼠的點擊位置,作為顯示菜單的left和top值
編碼實現
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
window.onload = function(){
var menu = document.getElementById('menu');
document.body.oncontextmenu = function(e){ // 自定義body元素的滑鼠事件處理函數
var e = e || window.event;
e.preventDefault(); //阻止系統右鍵菜單 IE8-不支持
// 顯示自定義的菜單調整位置
let scrollTop =
document.documentElement.scrollTop || document.body.scrollTop;// 獲取垂直滾動條位置
let scrollLeft =
document.documentElement.scrollLeft || document.body.scrollLeft;// 獲取水平滾動條位置
menu.style.display = 'block';
menu.style.left = e.clientX + scrollLeft + 'px';
menu.style.top = e.clientY + scrollTop + 'px';
}
// 滑鼠點擊其他位置時隱藏菜單
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; // 設置菜單為絕對位置
width: 100px;
height: 120px;
display: none;
}
</style>
</head>
<body style="overflow:auto">
<div id="box" style="height:5000px; width:5000px">讓body元素出現滾動條用的div</div>
<div id="menu">
<ul>
<li><a href="#">分享</a></li>
<li><a href="#">收藏</a></li>
<li><a href="#">舉報</a></li>
</ul>
</div>
</body>
</html>
實現效果