其他分享
首页 > 其他分享> > 【js效果】屏蔽鼠标右键

【js效果】屏蔽鼠标右键

作者:互联网

<html>
<head>
<title>屏蔽鼠标右键</title>
<script language="javascript">
function click(){
if (event.button==2){
alert('禁止使用鼠标右键!') 
}
}
document.onmousedown=click
</script>
</head>
<body>
请在本页面空白处点击鼠标右键,会看到效果!~
</body>
</html>

标签:function,鼠标,js,屏蔽,右键,onmousedown,click
来源: https://blog.51cto.com/15142266/2690943