本节内容:
如何禁止查看源代码
只要在<head>和</head>之间加入以下代码,即可实现禁止查看网页源代码:(可以用鼠标右键试试)
复制代码 代码示例:
<SCRIPT language=
javascript>
function click() {
if (event.button==2) {
alert('对不起,禁止使用此功能.')
}
}
document.onmou
sedown=click
</SCRIPT>
禁止网页内容复制粘贴另存为的方法。
1,禁止网页另存为:在<body>后面加入:
复制代码 代码示例:
<noscript>
<
iframe src="*.htm"></iframe>
</noscript>
2,禁止网页内容复制.粘贴:在<body>中加入以下代码:
复制代码 代码示例:
<body onmousemove=HideMenu() oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">
3,<!--免右键开始!--><script language="JavaScript">
复制代码 代码示例:
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
</script><!--免右键结束!-->