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