无法在iframe中的新标签页中打开链接

时间:2019-05-10 05:08:45

标签: html iframe

给出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> 属性
  • Googled around this
  • 没有控制台错误

1 个答案:

答案 0 :(得分:2)

根据MDN documentation: iframerel属性需要设置为sandbox

  

允许弹出式窗口(例如allow-popupswindow.open()target="_blank")。如果不使用此关键字,则弹出窗口将以静默方式无法打开。