Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站包含 4 个 iframe。我正在尝试为每个 iframe 分别创建后退按钮是否可以为 iframe 创建单独的按钮。请帮我.....
对的,这是可能的。
myFrame1.history.back (); // or myFrame1.history.go (-1);
使用这种方式:
<iframe name="frame1"></iframe>
对于这个 IFrame,JavaScript 是:
<a href="#" onclick="frame1.history.back ();">Back IFrame 1</a>