不明白 这个e.preventDefault();加上有什么用?

来源:3-11 菜单定位及总结

金属girl

2018-06-26 20:48

$(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);

}

});


})


写回答 关注

1回答

  • qq_想念_10
    2018-07-06 14:37:40

    阻止浏览器的默认行为的

基于bootstrap的网页开发

Bootstrap框架的基础教程,学会用Bootstrap前端框架搭建网页

187669 学习 · 734 问题

查看课程

相似问题