将第1页中的网址转到第2页中的iframe锚点

时间:2019-03-29 17:12:47

标签: javascript html html5 url

我有以下htmls

第1页:

<html>
<body>
<a href=“page2.html#iframeanchor”></a>
</body>
</html>

第2页:

<html>
<body>
<div>Lot of content multiple pages</div>
<iframe src=“page3.html”>This is multiple page as well</iframe>
</body>
</html>

第3页:

<html>
<body>
<div>Lot of content multiple pages</div>
<a id=“iframeanchor”>Hello</a>
</body>
</html>

如何从第2页的第1页跳转到iframeanchor?

0 个答案:

没有答案