请问有谁知道网页禁止复制、粘贴,以及屏蔽右键于一体的HTML代码???

来源:百度知道 编辑:UC知道 时间:2024/06/29 23:14:37
非常感谢你的回答,如果能再加上屏蔽图片左上角的保存菜单栏那就最好了。感谢再感谢哦。

禁止复制文字代码
<body leftmargin=0 topmargin=0 oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>

真正的屏蔽鼠标右键

<script language="JavaScript">
<!--

if (window.Event)
document.captureEvents(Event.MOUSEUP);

function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;

return false;
}

function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}

}

d