转载:收藏:如何禁用鼠标右键拖动复制文字等

来源:互联网 发布:win10 linux双系统zr 编辑:程序博客网 时间:2024/05/22 06:36

(转自)http://www.5imoban.net/jiaocheng/jquery/2014/0218/209.html

转载:收藏:如何禁用鼠标右键拖动复制文字等


<!doctype html>

<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>
<div oncontextmenu="return false;" ondragstart="return false;" onselectstart="return false;" onselect="document.selection.empty();" style="width:500px; height:500px; border:1px solid red;">
oncontextmenu="return false;" //禁止鼠标右键<br />
ondragstart="return false;" //禁止鼠标拖动<br />
onselectstart="return false;"//禁止选中文字<br />
onselect="document.selection.empty();"//禁止复制文本<br />
</div>
 </body>
</html> 
0 0
原创粉丝点击