1种方式:
实现原理是,在语法标签里加入如下代码:
ondragstart="window.event.returnValue=false;" oncontextmenu="window.event.returnValue=false;" onselectstart="event.returnValue=false;"
这里,鼠标拖曳(ondragstart)、选择(onselectstart)和右键弹出pop菜单。
2种方式:
在引用js文件中加入
document.oncontextmenu=function(){
return false;
};
document.ondragstart=function(){
return false;
};
document.onselectstart=function(){
return false;};
document.onbeforecopy=function(){
return false;};
document.onselect=function(){
document.selection.empty();
};
document.oncopy=function(){
document.selection.empty();
};
document.onmouseup=function(){
document.selection.empty();
};
3.屏蔽F5键刷新
放body 里
我用插件no script 是不是可以屏蔽掉你的javascript呢
鸡生蛋 蛋生鸡。。。。。