2:
在<body>中加入以下代码:
<body oncontextmenu="return false" onselectstart="return false">
或
<body oncontextmenu="event.returnValue=false" onselectstart="event.returnValue=false">
实质上,方法2与方法1是一样的。
方
法3:
如果只限制复制,可以在<body>加入以下代码:
<body oncopy="alert('对不起,禁止复制!')return false">
2、使菜单"文件"-"另存为"失效
如果只是禁止了右键和选择复制,别人还可以通过浏览器菜单中的"文件"-"另存为"拷贝文件。为了使拷
贝失效,可以在<body>与</body>之间加入以下代码:
<noscript>
<iframe src="*.htm"></iframe>
</noscript>
这样,用户在另存网页时,就会出现"无法保存Web页"的错误。
方法:
function stop(){return false
}
document.oncontextmenu=stop
但有时,输入框的右键不能屏蔽,可以尝试下面的脚本:
if (document.layers){
document.captureEvents(Event.MOUSEDOWN)
}
document.onmousedown = click
document.oncontextmenu = new Function("return false")
function click(e)
{
e = e || event
if (e.button == 2)
{
var tag = e.srcElement || e.target
if (tag.type == "text" || tag.type == "textarea")
{
document.oncontextmenu = new Function("return true")
}
else
{
document.oncontextmenu = new Function("return false")
}
}
}