同位素 - “没有结果”信息?

发布于 2024-12-13 19:16:31 字数 127 浏览 2 评论 0原文

我正在使用 Metafizzy 的 Isotope JS 插件 (v2.0.1) 来过滤出版物库,并且我使用多个过滤器(例如出版商和行业)。有没有办法检查我的过滤器组合是否导致零结果,然后显示相应的消息...类似“抱歉。找不到匹配的项目”。

I'm using the Isotope JS plugin (v2.0.1) from Metafizzy to filter a library of publications, and I am using more than one filter (e.g. publisher and industry). Is there a way to check if my combination of filters has resulted in zero results, and then show a corresponding message... something like "Sorry. No matching items found."

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨光如昨 2024-12-20 19:16:31
$container.isotope({ filter: '.your-filter' });

  if ( !$container.data('isotope').$filteredAtoms.length ) {
    $('.message-div').fadeIn('slow');
  } else {
    $('.message-div').fadeOut('fast');
  }

您还可以根据您的效果使用隐藏/显示或许多其他效果来代替淡入和淡出。

$container.isotope({ filter: '.your-filter' });

  if ( !$container.data('isotope').$filteredAtoms.length ) {
    $('.message-div').fadeIn('slow');
  } else {
    $('.message-div').fadeOut('fast');
  }

You could also use hide/show or a number of other effects instead of fadeIn and fadeOut depending on your effect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文