我正在使用同位素的过滤功能。我写道:
$('#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.
问题在于,无论何时点击链接哪个哈希或用哈希键入网址,浏览器都会先加载所有项目,然后再将其过滤掉。我想要的是:页面加载仅过滤的项目。