新希望下属公司:javascript求救,在页面是点左键弹出\"你好\",点右键弹出\"对不起\"

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 17:02:15
javascript求救,在页面是点左键弹出\"你好\",点右键弹出\"对不起\"

<script>
if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() {
event.cancelBubble = true
event.returnValue = false;
return false;
}
if (window.Event) document.captureEvents(Event.MOUSEUP);
function c() {
if (event.button == 1)
{
alert("你好");
return false;
}
else
{
alert("对不起");
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.onmousedown = c;
document.oncontextmenu = nocontextmenu;
</script>