如何运行命名空间函数onclick和windows.resize

时间:2018-04-04 13:53:56

标签: jquery namespaces

我有这个功能,当单击标题时会折叠/展开页脚中的项目。它按预期工作。但是,我需要命名功能,我无法使其工作。

现有功能:

var footerHeader = jQuery('.footer-heading');
var footerColumn = jQuery('.footer-heading + .footerlinks');
var cachedWidth = jQuery('body').prop('clientWidth');

var collapseFooter = function(el, ev) {
  // Collapse footer at specified break point
  if (window.matchMedia('(max-width: 991px)').matches) {
    ev.preventDefault();
    jQuery(el).next('ul').slideToggle();
    jQuery(el).toggleClass('open');
  } else {
    jQuery(el).next('ul').show();
  }
};

footerHeader.click(function(e) {
  collapseFooter(this, e);
});

//On resize, wait and remove redundant footer styling
var it;
window.onresize = function() {
  clearTimeout(it);
  it = setTimeout(function() {
    var newWidth = jQuery('body').prop('clientWidth');
    if (newWidth !== cachedWidth) {
      footerHeader.removeClass('open');
      footerColumn.removeAttr('style');
      cachedWidth = newWidth;
    }
  }, 200);
};

这是我到目前为止所做的命名空间版本:

var globalFooter = {
  footerColumn: jQuery('.footer-heading + .footerlinks'),
  cachedWidth: jQuery('body').prop('clientWidth'),

  collapseFooter: function (el, ev) {
    if (window.matchMedia('(max-width: 991px)').matches) {
      ev.preventDefault();
      jQuery(el).next('ul').slideToggle();
      jQuery(el).toggleClass('open');
    } else {
      jQuery(el).next('ul').show();
    }
  }
}
jQuery('.footer-heading').on('click', globalFooter.collapseFooter(this, ev));

我无法使其发挥作用:"Uncaught ReferenceError: ev is not defined"。如果我删除"ev",它仍然无效。

HTML:

<h3 class="footer-heading">Heading</h3>
<ul class="footerlinks" role="menu">
  <li role="menuitem"><a href="#">One</a></li>
  <li role="menuitem"><a href="#">Two</a></li>
  <li role="menuitem"><a href="#">Three</a></li>
  <li role="menuitem"><a href="#">Four</a></li>
</ul>

JsFiddle here

1 个答案:

答案 0 :(得分:0)

当您为函数提供参数时,需要将其包装在另一个匿名函数中:

jQuery('.footer-heading').on('click', function(e) {
  globalFooter.collapseFooter(this, e);
});