我正在尝试提取文本并使用同位素库按字母顺序对文本进行排序。文本位于每个p标记中,类别为.box-title。我正在传递一个函数来通过getSortData选项获取该文本.....但这不起作用。有什么想法吗?我已经检查了$ container,$ elem和$('。box-title')并且它们都返回了数据数组
$container.isotope({
getSortData: {
name: function ($elem) {
return $elem.find('.box-title').text();
}
}
});
$container.isotope({
sortBy: 'name'
});
答案 0 :(得分:0)
您的代码中有错误。
name: function (elem) {
return $(elem).find('.box-title').text();
}