blog首页的代码

来源:百度知道 编辑:UC知道 时间:2024/05/12 07:34:46
想问下这个是怎么弄的!http://hesu.52blog.net/user1/63495/index.shtml
是需要代码么?

你是说禁止右键吗?代码如下:
这个网站被NOD32侦测有威胁代码。
<!--禁右-->
<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;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</SCRIPT>