`
msxzcy
  • 浏览: 5494 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

JS屏蔽鼠标右键

阅读更多
<html>
<head>
<title>禁止点击鼠标右键</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="javascript">
function click() {
if (event.button==2) {   //button==1为左键
alert('右键被禁用啦……')
}
}
document.onmousedown=click
</script></head>
<body>
</body>
</html>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics