函数jquery中的函数

时间:2014-10-17 13:31:53

标签: javascript jquery twitter-bootstrap-3

我需要在一次点击事件中运行2个函数,并且无法弄清楚如何嵌套它们。

目前,如果单独运行但不在一起运行,则两者都有效。

此功能在点击后关闭我的菜单。

$(document).on('click','.navbar-collapse.in',function(e) {
  if( $(e.target).is('a') ) {
    $(this).collapse('toggle');     
  }
});

此功能滚动到我的特定锚点。

function scrollToAnchor() {
  if($(".jquery-anchor").length > 0 && document.URL.indexOf("#") >= 0){  
    var anchor = document.URL.split("#")[1];
    $(".jquery-anchor").each(function() {
      if($(this).attr("name") == anchor) {
        $("html,body").animate({
          scrollTop: $(this).offset().top - 50},
          'slow');
      }
    });     
  }
}


$(function() {
  $("a[href*='#JDG']:not([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 - 30 //offsets for fixed header
        }, 1000);
        return false;
      }
    }
  });

  //Executed on page load with URL containing an anchor tag.
  if($(location.href.split("#")[1])) {
    var target = $('#'+location.href.split("#")[1]);
    if (target.length) {
      $('html,body').animate({
        scrollTop: target.offset().top - 30 //offset height of header here too.
      }, 1000);
      return false;
    }
  }
});

我无法弄清楚顶部函数在下面的点击事件中的放置方式和位置。这是可能的吗?

$("a[href*='#JDG']:not([href='#'])").click(function() { 
});

1 个答案:

答案 0 :(得分:5)

从两个功能中删除return false