自贡到刘山乡怎么坐车:如何禁用网页播放器的右键

来源:百度文库 编辑:高考问答 时间:2024/04/29 06:07:18
了防止盗链,希望在 Real Player 和 Media Player 上禁用右键有什么办法,在网上找了很多,都不管用 我知道想盗的人还是会盗走的,可是右键如果不禁用的话太明显了

<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>