0

当一个人右键单击时,你如何使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"); 进入脚本但没有成功。

编辑

我希望在警报框关闭时进行重定向。很抱歉之前没有说清楚。

4

2 回答 2

0

我认为您需要使用带有协议的完整 URL:

window.open('http://www.google.com');

右键单击问题已在此处得到解答:

右键单击是 Javascript 事件吗?

于 2013-09-15T22:11:43.453 回答
0

改变

if (document.layers){
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
  document.onmousedown=clickIE4;
}

if (document.layers){
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
  document.onmousedown=clickIE4;
}
else { 
  document.onmousedown = function (e) {
  if (e.button == 2)
  {
      alert("Ouch! that hurts. Please do not right click!");
      setTimeout(function() { location.href="http://www.google.com/"; }, 500);
  }
 }
}
于 2013-09-15T22:32:03.343 回答