gpt4 book ai didi

javascript - 返回溢出内容中的子页面 anchor

转载 作者:搜寻专家 更新时间:2023-10-31 08:48:07 24 4
gpt4 key购买 nike

我有一个 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 Bug:DSK-365451@bugs.opera.com

最佳答案

我使用 jQuery 解决了这个问题,hashchange plugin @barius 建议,以及以下代码:

jQuery(function($){
var $content = $('#contents');
$(window).hashchange(scrollHashIntoView);

function scrollHashIntoView(){
// Ensure that the ID I'm looking for is within my scrolling content
var offset = $content.find(location.hash).offsetRelativeTo($content);
$content.scrollTop( offset ? offset.top : 0 );
}
});

// Find the offset of an element relative to some ancestor
jQuery.fn.offsetRelativeTo = function(el){
var $el=$(el), o=this.offset(), o2=$el.offset();
if (o){
o.top -= o2.top - $el.scrollTop();
o.left -= o2.left - $el.scrollLeft();
}
return o;
}

offsetRelativeTo() 代码对于我的更复杂的情况是必要的,其中一个子 anchor 恰好位于 position:relative 父级(它本身位于内部滚动内容)。

我将 scrollHashIntoView() 设为一个单独的函数,因为 (a) 它有助于 self 记录行为,并且 (b) 它允许我在需要时单独调用它,并且 (c) 它将工作的实现与简洁的事件注册及其操作分开。

一个更强大的解决方案(处理嵌套滚动区域不太可能但可能的情况)会找到 id 并沿着 offsetParent 的树向上移动,适本地将每个滚动到 View 中。

关于javascript - 返回溢出内容中的子页面 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10918242/

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