HTML5 Data Attribute Sort

前端 未结 2 1299
感情败类
感情败类 2021-01-05 06:58

I\'d like to sort DOM elements that has data attributes defined for rating and date. What is the best way to implement sorting on the front-end with jQuery?

Sample

相关标签:
2条回答
  • 2021-01-05 07:25

    There is a cool jQuery plugin that sorts DOM elements by attribute. You can find it here: http://tinysort.sjeiti.com/

    Example implementation: http://jsfiddle.net/statico/JNFFj/7/

    0 讨论(0)
  • 2021-01-05 07:25

    Here is the basic idea...

    var sortedSet = $('#sort li').toArray().sort(function(a, b) {
       return $(a).data('rating') - $(b).data('rating');
    });
    

    You select the elements, convert them to a proper array, and then sort (the comparison function I used is an example, change it to suit your requirements).

    jsFiddle with lowest button.

    0 讨论(0)
提交回复
热议问题