平滑滚动后关闭模态到达锚点

时间:2016-03-03 20:46:48

标签: jquery twitter-bootstrap bootstrap-modal smooth-scrolling

我正在使用Bootstrap,常规导航当前使用平滑的滚动脚本,该脚本会转到页面的各个部分。

对于手机,我有一个全屏导航模式,一旦你点击汉堡包图标就会打开。它也会使用平滑滚动,但是当你点击菜单中的一个链接时,我似乎无法关闭模态,它会将你带到该部分。

脚本

$(function() {
  $('a[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
        || location.hostname == this.hostname) {

      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
$('#myModal').modal('hide');
});

1 个答案:

答案 0 :(得分:0)

$('#myModal').hide();

或者

$('#myModal').remove();