当用户点击一个按钮,一个弹出打开。 该弹出会去一个控股页,并等待用户离开网站或关闭浏览器。
然后,当用户离开或关闭浏览器,它会重定向弹出位置不同的站点。
我曾尝试下面的代码的几个变种:
win=window.open('google.com','popup'); //just to illustrate the "win" = my window.open().
$(window).bind('beforeunload', function() {
window.win.location.href="http://the-new-location.com";
//tried something like this as well:
//win.location.href="http://the-new-location.com";
});
但是,如果没有运气。 我不是辉煌的JavaScript / jQuery的等等如何使这项工作的任何帮助,将深表赞赏。
谢谢!