当一个人右键单击时,你如何使javascript重定向?甚至可能吗?
var message="MESSAGE TO USER"
function clickIE4(){
if (event.button==2){
alert(message);
window.open("site.com/whatever.php");
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
window.open("site.com/whatever.php");
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
我正在尝试插入 window.open("site.com/whatever.php"); 进入脚本但没有成功。
编辑
我希望在警报框关闭时进行重定向。很抱歉之前没有说清楚。