Machineghost 的回答非常有帮助。我拼凑在一起的代码采用 URL 参数并将其转换为哈希标记,然后浏览器会在 DOM 准备好后立即滚动到该标记。
URL 如下所示:
www.mysite.com/hello/world.htm?page=contact
联系人是您要滚动到的 ID 的名称
<h1 id="contact">Contact Us</h1>
这是代码:
// Get any params from the URL
$.extend({
getUrlVars: function(){
var vars = [], hash;
var url = decodeURIComponent(window.location.href);
var hashes = url.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
},
getUrlVar: function(name){
return $.getUrlVars()[name];
}
});
$(document).ready(function() {
// Unhide the main content area
$('section.centered').fadeIn('slow');
// Create a var out of the URL param that we can scroll to
var page = $.getUrlVar('page');
var scrollElement = '#' + page;
// Scroll down to the newly specified anchor point
var destination = $(scrollElement).offset().top;
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-75}, 800 );
return false;
});
我在 Chrome 和 FF 中检查了这个,效果很好。如果滚动目标没有到达您想要的确切位置,请尝试调整“destination-75”。
如果没有上面的帖子,我无法做到,所以谢谢!