我们说我有一个打开新窗口的链接。
<a href="URL" target="_blank">open new window</a>
在新窗口中,我将父级的URL更改为其他内容:
<script type="text/javascript">if(parent.window.opener) parent.window.opener.location='ANOTHERURL';</script>
不幸的是我无法控制ANOTHERURL上会出现什么 - 有时候会有javascript alert()导致我的浏览器回到那个父窗口。
当我在新窗口中时,有没有办法阻止在后台运行JS alert()?
这一切都适用于手机 - 在Android和iOS中。