0

我有一个 iframe,里面有以下内容:

<body>
<a id="top" target="_self"></a>

...

<a href="#top">[top]</a> ...

单击链接时,它会将用户带到 iframe 中的页面顶部,但 iframe 似乎也将自身固定在父页面的顶部。

我在没有 target="_self" 的情况下尝试过,但它也是一样的。

请任何人都可以对此有所了解吗?

谢谢你

4

1 回答 1

0

I fixed this by using:

<a href="#" onclick="location.href="#top">[top]</a>
于 2012-12-15T11:21:16.347 回答