博客列表 >JS--菜单事件

JS--菜单事件

梁凯达的博客
梁凯达的博客原创
2019年03月01日 20:42:23877浏览

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
			*{margin:0px;padding:0px;}
			#box{width:150px;height:120px;position:absolute;top:0px;display:none;}
			li{
				list-style-type:none;
				width:150px;
				height:40px;
				background:#ddd;
				border-bottom:1px dashed green;
				text-align:center;
				line-height:30px;
			}
	</style>
</head>
<body>
	<div id="box">
		<li>复制</li>
		<li>粘贴</li>
		<li>剪切</li>
		<li>删除</li>
	</div>
</body>
<script>
// document.onmousedown = function(e){
// 	//解决兼容性问题
// 	var e  = e || event;
// 	//alert(e.button);
// 	if (e.button== 2) {
// 		alert('你点击了右键')
// 	}
// }
	//菜单事件  右键事件
	document.oncontextmenu=function(e){
		//alert('右键事件')
		var e = e || event;
		document.title="X:"+e.clientX+"Y:"+e.clientY;

		//让你的自定义菜单显示出来
		box.style.display="block";
		//让你的自定义的菜单放置在鼠标坐标点上
		box.style.left = e.clientX+'px';
		box.style.top = e.clientY +'px';

		//阻止默认行为  阻止默认菜单出现
		
		return false;
		
	}
	//让菜单消失的效果
	document.onclick=function(){
		box.style.display="none";
	}
</script>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议