情况:
第一:id为 miframe的iframe,显示一个带有名为suchen的锚点的站点,即
<div id="suchen"></div>.
第二。父框架。
目标:在父框架内创建一个链接,看起来像
<a class="LINK0" title="" href="javascript:springen('suchen');">w/e</a>
使iframe中的内容滚动到锚点suchen。我的做法。
function springen(anker) {
var childWindow = document.getElementById("miframe").contentWindow;
// this should emulate a click on the ptAnchor DIV's child A HREF.
//childWindow.document.getElementById(anker).firstChild.click();
//childWindow.document.getElementById(anker).scrollIntoView();
// alternatively, this will simply scroll the child window to the top-left corner
//childWindow.scrollTo(0,200);
}
childWindow.scrollTo(0,200);
到目前为止,该滚动发生在 200 处。但我需要滚动到锚点,无论它在iframe中的哪个位置。想法?