为什么href在Firefox的iframe中不起作用

问题描述 投票:0回答:1

我有下一个问题:我在iframe中有此页面

<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <a href="#foo">Foo link</a>
    <!--some tags -->
    <a id="foo">foo</a>
  </body>
</html>

并且此链接在除Firefox之外的所有浏览器中均有效。可能是什么问题?

html firefox iframe href
1个回答
0
投票

target="_PARENT"添加到iframe的代码中。

© www.soinside.com 2019 - 2024. All rights reserved.