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>

注意 -viewer是 iframe 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 回答