通过更改iframe内容进行锚定

时间:2012-10-01 10:42:00

标签: iframe anchor

我试图评论this question以澄清我可能需要的内容,但如果没有足够的代表,我就不能这样了......

我希望在定位锚标记时更改iframe的内容,以滚动到页面下方的某个点。

我尝试在另一个页面上实现js,但在滚动好的时候,iframe内容没有改变。

1 个答案:

答案 0 :(得分:1)

试试这个例子:

<html>
<body>
The frame:
<iframe id="theFrame" src="about:blank" width="90%" height="600"></iframe>
<br />
The link: <a href="#bottomOfPage" onclick="document.getElementById('theFrame').src='http://www.bing.com/';">change frame and scroll to bottom</a>
<br />
<div style="height:600px;background:#8cc">padding...</div>
Bottom of page.
<div id="bottomOfPage"><div><!--this is the marker-->
</body>
</html>