网络上看到好的文章或者图片,直接右键另存为就可以,但是一些好的文章或图片不希望别人下载,怎么办?那就要禁止在网站右键另存,想要实现这种功能,只需要简单的JS代码即可。
<script language="JavaScript">
<!--
if (window.Event)
document.captureEvents(Event.MOUSEUP)
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false
return false
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false
return false
}
}
document.oncontextmenu = nocontextmenu // for IE5+
document.onmousedown = norightclick // for all others
//-->
</script>
如何在页面上禁止鼠标右键,希望能与大家多多交流,谢谢!