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

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

发表于 @ 2009年06月16日 15:33:00 | 评论( loading... ) | 编辑| 举报| 收藏

旧一篇:MySql 时间戳日期转换 | 新一篇:一些谈话的技巧.绝非奇技淫巧

  • 发表评论
  • 评论内容:
  •  
Copyright © domando
Powered by CSDN Blog