本帖最后由 许庭洲 于 2012-7-23 16:39 编辑
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用JS实下功能,左键点击页面显示“点击了左键”右键点击显示“现在禁止右键”并在2分钟后自动关闭页面</title>
<form id="form1" runat="server">
<iframe style="display:none" name=if0 ></iframe>
</form>
<script>
function document.oncontextmenu()
{
event.returnValue=false;
}
function click()
{
if(event.button==2)
{
aaa=if0.showModelessDialog("javascript:alert(' 鼠标右键被点击'); window.close();","","status:no;resizable:no;help:no;dialogHeight:30px;dialogWidth:40px;");
setTimeout("if0.location.reload();",2000);
}
if (event.button==1)
{
aaa=if0.showModelessDialog("javascript:alert('鼠标左键被点击'); window.close();","","status:no;resizable:no;help:no;dialogHeight:30px;dialogWidth:40px;");
setTimeout("if0.location.reload();",2000);
}
}
document.onmousedown=click
</script>
</head>
<body>
</body>
</html> |