欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js禁止頁面使用右鍵(簡單示例代碼)

 更新時間:2013年11月13日 10:14:23   作者:  
js禁止頁面使用右鍵(簡單示例代碼)。需要的朋友可以過來參考下,希望對大家有所幫助

js禁止右鍵的代碼:

復(fù)制代碼 代碼如下:

function click(e) {
if (document.all) {
if (event.button==1||event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")

相關(guān)文章

最新評論