情况:
第一:iframe与ID miframe,显示一个名为素贞锚,即网站
<div id="suchen"></div>.
第二。 父框架。
目标:让父框架内的链接看起来像
<a class="LINK0" title="" href="javascript:springen('suchen');">w/e</a>
使在iframe的内容被滚动到锚俗尘 。 我的做法。
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。 想法?