防止从子进程的父窗口重定向

时间:2012-04-15 16:25:32

标签: javascript redirect parent window.opener

我有一个网站,我必须链接到另一个网站,这个其他网站包含此代码:

if (parent.window.opener) parent.window.opener.location='http://AdvertisingURL';
if (self.parent.frames.length!=0) self.parent.location=document.location;

我网站上的链接是与target = _blank的普通链接,当我点击它时,包含该代码的网站会在新窗口中打开,然后我的网站会被重定向到广告网址。

如何在没有任何警告消息的情况下阻止重定向?

0 个答案:

没有答案