例如:如果我有一个带有Quicksand的名为fruit.php的页面,过滤器为'All','Apple'和'Bananas',默认设置为'All',我可以链接到fruit。来自其他一些页面的php并将流沙预先过滤为'Apple'或'Banana'而不是?
答案 0 :(得分:1)
如果您设置了像fruit.php#apple这样的链接,您可以编写一些javascript来解析主题标签并在页面加载上过滤集合:
if(window.location.hash) {
// run code here to filter the quicksand set
var $filteredData = $data.find('li[data-type=' + window.location.hash + ']');
$applications.quicksand($filteredData, {
duration: 800
});
}