状況:
最初: id miframeのiframe、suchenと呼ばれるアンカーを持つサイトを表示します。
<div id="suchen"></div>.
2番。親フレーム。
目標: 親フレーム内に次のようなリンクを作成します。
<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内のどこにいても、アンカーまでスクロールする必要があります。アイデア?