来自 Lim Chee Un 的帖子:http: //davidwalsh.name/mootools-onload-smoothscroll
window.addEvent(‘domready’, function() {
new SmoothScroll({ duration:700 }, window);
var el = window.location.hash.substring(1); // the hash
if(el) {
window.scrollTo(0,0);
var scroll = new Fx.Scroll(window, { wait: false, duration: 700, transition: Fx.Transitions.Quad.easeInOut });
scroll.toElement(el);
}
});
我想让页面在页面加载时自动平滑滚动到 URL 中的 # 。
当链接是这样的,即同一页面时,平滑滚动有效:
<a href="#pageHeading">Books & Booklets</a>
而不是我需要这样的:
<a href="books.html#pageHeading">Books & Booklets</a>
任何人都可以阐明为什么这不起作用?
谢谢