2012-10-01 64 views
0

我試着this question澄清發表評論我要什麼,我可能需要但沒有足夠的代表,我不能因此在這裏我們去...錨不斷變化的iframe中的內容

我想改變一個iframe的內容,並且定位一個錨點標籤,滾動到頁面上較低的某個點。

我試圖在其他頁面上實現js,但是當它滾動正常時,iframe內容沒有改變。

回答

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> 
+0

這似乎已經擊中當場感謝! (這也幫助我意識到了另一個錯誤,我非常感謝!) – Bizzaro