gpt4 book ai didi

javascript - IFRAME 和后退/前进按钮

转载 作者:行者123 更新时间:2023-11-28 10:09:20 24 4
gpt4 key购买 nike

我正在开发一个简单的 .hta 应用程序,它有一个控制 Pane 和一个 IFRAME。

我添加了后退和前进按钮,但它们似乎不起作用。如果单击以下示例中的链接“a”和“b”,则后退和前进按钮不会执行任何操作。

如何实现这一目标?

test.hta
===================================
<!DOCTYPE html>
<html>
<head>
<title>Back / Forward Buttons</title>
<hta:application id="test" applicationname="test" icon="res/icon.ico" showintaskbar="yes" singleinstance="yes">
</head>
<body>
<div class="strip">
<button onclick="output.history.back(); return false">Back</button>
<button onclick="output.history.forward(); return false">Forward</button>
</div>

<div id="iframe-wrap" class="iframe-container">
<iframe id="output" name="output" src="a.html" width="100%" border="0" frameborder="no" scrolling="yes"></iframe>
</div>
</body>
</html>

a.html
===================================
<!DOCTYPE html>
<html>
<head><title>A</title></head>
<body>PAGE A - <a href="b.html">Go to B</a></body>
</html>

b.html
===================================
<!DOCTYPE html>
<html>
<head><title>B</title></head>
<body>PAGE B - <a href="a.html">Go to A</a></body>
</html>

最佳答案

尝试:

window.frames.output.history.forward();

window.frames.output.history.go(+1);

可能更好的是使用 getElementByID 来获取您尝试使用历史记录的元素。

iFrame 上的历史记录还存在一些已知的跨浏览器问题,但我目前不记得具体是什么问题,但 Google 应该能够为您解答。

关于javascript - IFRAME 和后退/前进按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7681697/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com