禁用浏览器右键

来源:互联网 发布:mac命令行安装jdk 编辑:程序博客网 时间:2024/06/03 16:27
<html>
<head>
<script>
function close3() {
 Source=document.body.firstChild.data;
 document.open();
 document.close();
 document.body.innerHTML=Source;
}
</script>
</head>
<body onload=close3()>
    close3
</body>
</html>
0 0