我有一个 HTML 页面,其中包含指向内容包装器中的子部分的链接,该内容包装器定位/调整大小并用于overflow:auto
显示滚动条。子部分的链接有效(导致内容滚动到正确的高度),但使用后退按钮不会重新滚动到Firefox v13、IE v9 或 Opera v11 中的正确部分(它在 Chrome v20 和 Safari v5 中有效)。
鉴于我不能彻底改变我的 CSS(我需要使用定位、大小、溢出的内容),我该如何解决这个问题?
可以接受涉及 JavaScript/jQuery 的解决方案,但最好使用纯 CSS 修复。
测试页面:phrogz.net/tmp/backing...containers.html
<!DOCTYPE html>
<html><head><title>Backing into Subpage Anchors in Overflowed Containers</title>
<style type="text/css">
#site-nav { position:fixed; width:10em; top:0; left:0 }
#contents { position:fixed; top:3em; bottom:5em; left:11em; right:0;
overflow:auto; background:#fed }
div { height:15em }
div:last-child { height:55em }
</style>
</head><body>
<article id="contents">
<div>
<h1 id="a">Section A</h1>
<p>Navigate to the different sections at left, and then press the Back button.</p>
</div>
<div><h1 id="b">Section B</h1></div>
<div><h1 id="c">Section C</h1></div>
</article>
<ul id="site-nav">
<li><a href="#a">Section A</a></li>
<li><a href="#b">Section B</a></li>
<li><a href="#c">Section C</a><ul>
</ul>
</body></html>
先前提交的 Firefox 错误:https
://bugzilla.mozilla.org/show_bug.cgi?id=391664 引用为 Opera 错误:DSK-365451@bugs.opera.com