2

我正在使用 localCompare 来比较一些字符串,这些字符串是数字。我希望订单是数字的。我怎样才能做到这一点?

排序功能:

requestAmountEl.find('optgroup').each(function(){
    var $this = jQuery(this);

    options = $this.children('option');
    options.detach().sort(function(a,b) {
        return b.value.localeCompare(a.value);
    }).appendTo($this);
});

结果:

<optgroup label="6 Months">
    <option value="2000">$2,000</option>
    <option value="11000">$11,000</option>
    <option value="10000">$10,000</option>
    <option value="1000">$1,000</option>
</optgroup>

现在它将排序 2000、10000、11000、1000。

4

2 回答 2

6

String.localeCompare has what you need. Pass in the numeric option and it will treat your strings as numbers:

['2000', '11000', '10000', '1000'].sort(
  (a, b) => a.localeCompare(b, undefined, {'numeric': true})
);

... results in:

["1000", "2000", "10000", "11000"]
于 2019-01-16T13:34:20.527 回答
2

解决方案:

requestAmountEl.find('optgroup').each(function(){
    var $this = jQuery(this);

    options = $this.children('option');
    options.detach().sort(function(a,b) {
        if (parseInt(b.value) > parseInt(a.value)) return 1;
        else if (parseInt(b.value) < parseInt(a.value)) return -1;
        else return 0;
    }).appendTo($this);
});
于 2013-08-26T21:56:30.093 回答