我正在尝试在 iframe 内的 Chrome for iOS 的新窗口中打开链接,但 Chrome for iOS 不会在新窗口中打开链接,而是浏览器在同一窗口中而不是在新窗口中打开链接. 弹出窗口也是如此。很奇怪。
例子:
测试.html
<iframe src="iframe.html" width="500" height="250"></iframe>
iframe.html
<SCRIPT type="text/javascript">
function open_popup()
{
window.open('http://www.google.com', '_blank', '');
}
</SCRIPT>
<a href="http://www.google.com" target="_blank">New window</a><br>
<a href="#" onclick="open_popup();">New popup</a>
直接浏览 iframe.html 但浏览 test.html 时,链接会在新窗口中打开
这是设计使然,还是 iOS 版 Chrome 中的错误?如果它是一个错误,有人知道如何报告这个错误吗?
(iOS 版 Safari 在浏览 test.html 时会在新窗口中打开链接)