当我点击父页面时,iframe 中的超链接不起作用

Hyperlink inside iframe is not working when I click on the parent page

我在 iframe 中有一个超链接,当我在父页面上单击它时,它不起作用。

这是一个设置示例:

iframe.html

<h1>I'm inner page!</h1>
<a id="shared" class="btn" href="pc.html" target="_top">go another page</a>

parent.html

<h1>I'm INDEX</h1>
<iframe id="open" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="iframe.html" width="100%" frameborder="0" border="0" cellspacing="0"></iframe>

请帮帮我T__T

只需删除目标属性

<h1>I'm inner page!</h1>
<a id="shared" class="btn" href="pc.html">go another page</a>

https://www.w3schools.com/tags/att_a_target.asp