您的位置:首页 > 其它

网页中屏蔽右键,不允许选择文本.兼容IE,Firefox

2009-06-16 15:33 330 查看
<style>
body {
-moz-user-select : none;
}
</style>
<script>
document.oncontextmenu=function(e){return false;}
window.onload = function(){
document.body.onmouseup = function (){document.selection.empty();};
document.body.oncontextmenu = function () {return false;};
document.body.onselectstart = function () {return false;};
document.body.onselect = function () {document.selection.empty()};
}
</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: