不明白 这个e.preventDefault();加上有什么用?
$(function(){
$("#menu-nav .navbar-collapse a").click(function(e){
var href = $(this).attr("href");
if('#' !== href){
e.preventDefault();
$("#tab-list a[href='"+ href + "']").tab("show");
$(document).scrollTop($(href).offset().top -70);
}
});
})