首页 > 语言 > JavaScript > 正文

JSCode all of Brower 全局屏蔽网页右键功能 具体实现

2024-05-06 15:47:12
字体:
来源:转载
供稿:网友
JSCode all of Brower 全局屏蔽网页右键功能 具体实现,需要的朋友可以参考一下

[javascript]

复制代码 代码如下:


<script type="text/javascript">
function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

function OnDeny(){
if(event.ctrlKey || event.keyCode==78 && event.ctrlKey || event.altKey || event.altKey && event.keyCode==115){
return false;
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
document.onkeydown=OnDeny();
}else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
document.onkeydown=OnDeny();
}

document.oncontextmenu=new Function("return false");
</script>

<script type="text/javascript">
function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

function OnDeny(){
if(event.ctrlKey || event.keyCode==78 && event.ctrlKey || event.altKey || event.altKey && event.keyCode==115){
return false;
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
document.onkeydown=OnDeny();
}else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
document.onkeydown=OnDeny();
}

document.oncontextmenu=new Function("return false");
</script>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选