在将物品装入同位素之前如何对其进行过滤

发布于 2024-11-15 05:18:55 字数 469 浏览 2 评论 0原文

我正在使用同位素的过滤功能。我写道:

$('#stage').isotope({
    filter:selector
});

在两个地方:

$(window).load(function() --> so
    that when users type url with
    hash(#), they can see the content
    items which is filtered out already.

$('.filters
    a').click(function(){filter:selector}); --> when users click particular link.

问题是,每当点击 hash 链接或输入带有 hash 的 url 时,浏览器都会先加载所有项目,然后再将其过滤掉。我想要的是:页面仅加载过滤后的项目。

I'm using isotope's filter function. I wrote:

$('#stage').isotope({
    filter:selector
});

in two places:

$(window).load(function() --> so
    that when users type url with
    hash(#), they can see the content
    items which is filtered out already.

$('.filters
    a').click(function(){filter:selector}); --> when users click particular link.

The problem is that whenever one clicks link which hash or type the url with hash, the browser will load all of the items first and later on filtering it out. What I want is: The page load only filtered items.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文