手机
当前位置:查字典教程网 >编程开发 >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 全局屏蔽网页右键功能 具体实现】相关文章:

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

javascript自定义右键弹出菜单实现方法

如何实现iframe(嵌入式帧)的自适应高度

javascript基于DOM实现省市级联下拉框的方法

jQuery实现限制textarea文本框输入字符数量的方法

巧妙破除网页右键禁用的十大绝招

javascript实现淡蓝色的鼠标拖动选择框实例

JavaScript中的splice()方法使用详解

精通JavaScript的this关键字

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

精品推荐
分类导航