0

以下に示すように、htmlページ内にiframeリンクがあります。

    <TABLE border="0" width="900">
    <tr valign="top">
    <td width="300" ALIGN=center>
            <div class="item_list">
            <a href="http://www.skiholidayextras.com?   affiliate_id=172&amp;submit_to=http://www.skihautesavoie.fr/results-lift-pass.html" target="_blank">link</a>
            </div>
    </td>
    <td width="300" ALIGN=center>
            <div class="item_list">
            <iframe src = 'http://www.flipkart.com/affiliate/displayWidget?affrid=WRID-137232779171598318' frameborder = 0, height=250, width = 300 > </iframe></a><br>
            </div>
    </td>
    <td width="300" ALIGN=center>
            <div class="item_list">
            <iframe src = 'http://www.flipkart.com/affiliate/displayWidget?affrid=WRID-137232785207215857' frameborder = 0, height=250, width = 300 > </iframe>


iframe リンク内をクリックすると、リンクが開きますが、クリックして戻ると、自動的にその iframe リンクにリダイレクトされます。誰かが私が抱えている問題を教えてもらえますか?

4

1 に答える 1

1

あなたの場合、iframeごとに独自のコントロールを実装します。代わりに、この作業をページ上のいくつかのボタンに委任します。

<div id="view_iframe">
    <iframe id="viewer" name="viewer" width="100%" height="600" src="some.html">
         <p>Your browser does not support iframes.</p>
    </iframe>
    <input type="button" id="back" class="button" onClick="viewer.history.back();" value="<<" />
    <input type="button" id="frwrd" class="button" onClick="viewer.history.forward();" value=">>" />
</div>

注 - vieweriframe id です

両方のボタンは、ページのサイズ変更時に iframe に合わせて絶対に配置されることに注意してください。

とにかく、iframeがこれを制御するものは次のとおりです。

// For an iframe's window
iframe.contentWindow.history.back(); 
iframe.contentWindow.history.forward();

また

iframe.contentWindow.history.go(-1); // back
iframe.contentWindow.history.go(1);  // forward
于 2013-09-24T10:12:41.923 に答える