js禁止鼠标右键和ctrl键,代码哪里有问题?该怎么改?
<html><metahttp-equiv="content-type"content="text/html;charset=utf-8"/><head><title>定...
<html>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<head><title>定时关闭窗口</title>
</head>
<script language="javascript">
function rightClick(){
if(event.button==2)
alert('禁止右键复制')
}
function ctrlKeyDown(){
if(event.ctrlKey)
alert('不当的拷贝将损害您的系统!');
}
document.onKeyDown="ctrlKeyDown();";
document.onMouseDown="rightClick();";
</script>
<body>
测试文本
</body>
</html> 展开
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<head><title>定时关闭窗口</title>
</head>
<script language="javascript">
function rightClick(){
if(event.button==2)
alert('禁止右键复制')
}
function ctrlKeyDown(){
if(event.ctrlKey)
alert('不当的拷贝将损害您的系统!');
}
document.onKeyDown="ctrlKeyDown();";
document.onMouseDown="rightClick();";
</script>
<body>
测试文本
</body>
</html> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询