关于菜单定位问题
请问一下,菜单定位实现了效果,但是我做出来的为什么点击菜单链接,直接跳到内容图片这位置了?,而不是像老师做出来那种,可以同时看到标签和内容图片
请问一下,菜单定位实现了效果,但是我做出来的为什么点击菜单链接,直接跳到内容图片这位置了?,而不是像老师做出来那种,可以同时看到标签和内容图片
2016-11-18
我在老师的基础上修改了:
$(function(){
$('#bs-example-navbar-collapse-1 .dropdown-menu a').click(function (e) {
var href = $(this).attr('href');
if ('#' !== href) {
e.preventDefault();
$("#tab-container a[href='"+href+"']").tab("show");
$(document).scrollTop($(href).offset().top - 110);
console.log($(href).offset().top);
}
});
});
主要是思想就是:阻止a的默认行为、设置document的高度
举报