js屏蔽效果
復制代碼 代碼如下:
/** 屏蔽F
window
/**
*屏蔽 F
*如果想要屏蔽其他鍵
*/
document
event = window
if(event
event
event
}
}
/** 屏蔽鼠標右鍵 */
document
//或者
document
event = window
if(document
event
}
}
/**
* 屏蔽“後退”功能(<a href="javascript:replaceLocation(
* @param url 頁面要轉向的URL
*/
function replaceLocation(url){
document
}
/** 屏蔽選中網頁內容 */
document
/** 屏蔽復制網頁內容 */
document
/** 屏蔽剪切網頁內容 */
document
/** 屏蔽向網頁粘貼內容 */
document
/** 屏蔽拷屏(不停的清空剪貼板) */
window
/**
* 屏蔽查看源文件( <body onload=clear()> )
*/
function clear() {
var source=document
document
document
document
}
/**
* 屏蔽js報錯
*/
function KillError()
{
return true;
}
window
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20037.html