右键不能用

来源:互联网 发布:lol钻石怎么上大师知乎 编辑:程序博客网 时间:2024/04/28 10:57
 

<script>
function stop(){
return false;
}
document.oncontextmenu=stop;
</script>

以上不全,下面才是正道


<body onmouseup="document.selection.empty();" oncontextmenu="return false;"
 onmousemove="document.selection.empty();" oncopy="document.selection.empty();" onselect="document.selection.empty();">

</body>

需要注意的是:document.selection 只能在IE中用

原创粉丝点击