我目前正在使用这个 JavaScript 弹出确认重定向:
var answer = confirm("If you are joining us through site other than" +
"website.net, .com or .info please hit OK otherwise hit cancel!");
if(answer)
window.open('http://website.net', '_blank');
else
alert("You need to know that it will not work for you well if you don't")
只有当用户不在目标页面上时,我才真正想要一种使用此弹出窗口的方法。