1. 程式人生 > >禁用瀏覽器右鍵

禁用瀏覽器右鍵

<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>