手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JSCode all of Brower 全局屏蔽网页右键功能 具体实现
JSCode all of Brower 全局屏蔽网页右键功能 具体实现
摘要:[javascript]复制代码代码如下:functionclickIE4(){if(event.button==2){returnfals...

[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>

【JSCode all of Brower 全局屏蔽网页右键功能 具体实现】相关文章:

JavaScript中eval函数的问题

常用DOM整理

纯javascript实现四方向文本无缝滚动效果

优化RequireJS项目的相关技巧总结

Javascript节点关系实例分析

原生javascript实现解析XML文档与字符串

JS实现定时自动关闭DIV层提示框的方法

免费空间广告万能消除代码

Prototype1.4手册

常用参考资料(手册)下载或者链接

精品推荐
分类导航