<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script type="text/javascript" src="jQuery-1.6.js"></script>
<style>
/**
*右键菜单简单样式
*/
#leftMenu{
width:150px;
height:auto;
z-index:999999;
background-color:gray;
display:none;
border:1px red solid;
position:absolute;
}
li:HOVER{
background-color:blue;
}
</style>
<script type="text/javascript">
$(function(){
//绑定右键事件,必须加上return false不然无法关闭默认事件
$(document).bind("contextmenu",function(e){
$("#leftMenu").css({left:e.pageX,top:e.pageY-1}).show();
return false;
});
//移出也隐藏右键菜单
$("#leftMenu").mouseleave(function(e){
$("#leftMenu").hide();
});
});
</script>
</head>
<body>
<div style="width:200px;height:1500px; border:1px red solid"></div>
<div id="leftMenu">
<ul >
<li>刷新</li>
<li>返回</li>
<li>编码</li>
</ul>
</div>
</body>
</html>
<html>
<head>
<script type="text/javascript" src="jQuery-1.6.js"></script>
<style>
/**
*右键菜单简单样式
*/
#leftMenu{
width:150px;
height:auto;
z-index:999999;
background-color:gray;
display:none;
border:1px red solid;
position:absolute;
}
li:HOVER{
background-color:blue;
}
</style>
<script type="text/javascript">
$(function(){
//绑定右键事件,必须加上return false不然无法关闭默认事件
$(document).bind("contextmenu",function(e){
$("#leftMenu").css({left:e.pageX,top:e.pageY-1}).show();
return false;
});
//移出也隐藏右键菜单
$("#leftMenu").mouseleave(function(e){
$("#leftMenu").hide();
});
});
</script>
</head>
<body>
<div style="width:200px;height:1500px; border:1px red solid"></div>
<div id="leftMenu">
<ul >
<li>刷新</li>
<li>返回</li>
<li>编码</li>
</ul>
</div>
</body>
</html>