给出service iptables restart
:
src.html
和<html>
<body>
<p>
<a href="https://stackoverflow.com" target="_blank" rel="noopener noreferrer">StackOverflow</a>
</p>
</body>
</html>
iframe.html
当我单击StackOverflow链接时,它无法在新选项卡上打开。
<html>
<head>
<title>Test iframe</title>
</head>
<body>
<iframe sandbox="allow-scripts" src="src.html">
</iframe>
</body>
</html>
属性答案 0 :(得分:2)
根据MDN documentation: iframe,rel
属性需要设置为sandbox
:
允许弹出式窗口(例如
allow-popups
,window.open()
或target="_blank"
)。如果不使用此关键字,则弹出窗口将以静默方式无法打开。