/**ブロック F1 ヘルプ*/
window.onhelp = function(){return false;}
/**
*ブロック F5、Ctrl N、Shift F10、Alt F4
*他のキーをブロックしたい場合は、対応するキーコードを見つけて、この方法に従ってください
*/
document.onkeydown = function(event){
event = window.event ||イベント;
if(event.keyCode==116 || (event.ctrlKey &&event.keyCode==78) || (event.shiftKey &&event.keyCode==121) || (event.altKey &&event.keyCode= =115)){
event.keyCode =0;
event.returnvalue = false;
}
}
/**マウスの右ボタンをブロックする*/
document.oncontextmenu = function(){return false;}
//または
document.onmousedown = function(even ){
イベント = window.event ||イベント;
if(document.all &&event.button == 2) {
event.returnvalue=false;
}
}
/**
* 「戻る」機能をブロックします (
Google)
* @param url ページのリダイレクト先の URL
*/
function replaceLocation(url){
document.location.replace(url);
}
/**選択した Web コンテンツをブロックする*/
document.onselectstart=function(){return false;}
/**Web コンテンツのコピーをブロックする*/
document.body.oncopy = function(){return false;}
/**Web コンテンツをブロックおよびカットする*/
document.body.oncut = function(){return false;}
/**Web ページへのコンテンツの貼り付けをブロックする*/
document.body.onpaste = function(){return false;}
/**画面のコピーをブロックします (クリップボードを継続的にクリアします)*/
window.setInterval('window.clipboardData("Text", "")', 100);
/**
* ソース ファイルの表示をブロックします ( )
*/
function clear() {
var source=document.body.firstChild.data;
document.open();
document.close();
document.body.innerHTML = ソース;
}
/**
* js エラー報告をブロック
*/
function KillError()
{
true を返します。
}
window.onerror=KillError;