試圖通過收藏夾對MetaFilter上的評論進行排序。通過在收藏夾鏈接使用TinySort,抓住title屬性這樣做:jQuery TinySort混合文字和數字不工作
$('div.comments').tsort('span.smallcopy>span>span>a',{attr:'title',order:'desc'});
但混合文字和數字無法正常工作,因爲我得到這個(5,58,4,3,39, 32,2 ...)例如:http://i.imgur.com/7N1Ln.jpg
代替(58,39,32,5,4,3,2 ...)
我使用的是最新版本的TinySort 1.3.27
我甚至試圖從標題屬性中刪除空間,沒有運氣:
$('span.smallcopy>span>span>a').attr('title', function() {
return this.title.replace(/\s/g, '');
});
當你刪除'order:'desc''結果是什麼當你調用'tsort'方法'$('div.comments')。tsort('span.smallcopy> span> span> a',{attr:'title'});'? – ClydeFrog
它不工作或者沒有'order:'desc'它只是變成(2,32,39,3,4,58,5 ...) – srbrussell
你能提供一些html代碼給我們,所以我們可以獲取您網站的更大圖片? – ClydeFrog