我正在准备好index.html的文档上启动bootstrap 3模态。我也有关于about.html的链接,例如index.html#people,它正在访问ID为“ people”的index.html的一部分,但是当我单击about.html的index.html#people时,窗口导航到index.html,但是不在#people部分,因为模式在其document.ready上打开。停用模式后,我应该怎么做才能导航到人员部分。
预先感谢
答案 0 :(得分:0)
在准备文档的功能上,检查URL中是否存在哈希,如果存在,请滚动到该元素:
$( document ).ready(function() {
/*
Your actual code here
*/
if(window.location.hash) {
$('html, body').animate({
scrollTop: $("#"+window.location.hash).offset().top
}, 2000);
}
});