我有以下嵌入的iframe<IFRAME SRC = 「reallylongpage.html#底部」/>不工作
<iframe width="100%" height="400" src="reallylongpage.html" />
reallylongpage.html已2個錨#top返回和#bottom網頁
我想我的iframe頁面底部加載reallylongpage.html所以我做
<iframe width="100%" height="400" src="reallylongpage.html#bottom" />
但是,這裏有兩個滾動的iframe和父頁的不良影響。父頁面不應該滾動。這發生在Chrome和Firefox中。
這裏是一個擁有全部代碼的例子
parent.html
<html>
<body>
<div style="padding:100 200;">
<iframe WIDTH="100%" HEIGHT="400" SRC="CHILD.HTML#BOTTOM" ></iframe>
</div>
<div>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9<br>10<br>11<br>12<br>13<br>14<br>15<br>16<br>17<br>18<br>19<br>20<br>21<br>22<br>23<br>24<br>25<br>26<br>27<br>28<br>29<br>30<br></div>
</body>
</html>
child.html
<html>
<body>
<a name="top" href="#bottom">go to bottom</a><br>
1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9<br>10<br>11<br>12<br>13<br>14<br>15<br>16<br>17<br>18<br>19<br>20<br>21<br>22<br>23<br>24<br>25<br>26<br>27<br>28<br>29<br>30<br>
<a name="bottom" href="#top">go to top</a>
</body>
</html>
這是我希望它看起來像
這是我得到的 incorrect http://i33.tinypic.com/2gy0t1x.png
哇,我從來沒有注意到這一點。 Google上的每一個鏈接似乎都沒有提供任何解決方案:-O 肯定會喜歡這一個......希望有人更好地瞭解並且啓發我們兩個。 – Pandincus 2010-08-06 21:02:07