【js效果】屏蔽鼠标右键

<html>
<head>
<title>屏蔽鼠标右键</title>
<script language="javascript">
function click(){
if (event.button==2){
alert('禁止使用鼠标右键!') 
}
}
document.onmousedown=click
</script>
</head>
<body>
请在本页面空白处点击鼠标右键,会看到效果!~
</body>
</html>
posted @ 2021-02-04 10:47  星河几重  阅读(98)  评论(0编辑  收藏  举报