suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - 中文,英文按首字母排序。

有一系列的名称,包括中文和英文,使其按首字母排序,就像手机通讯录一样从A-Z进行排序。
怎么做?谢谢

巴扎黑巴扎黑2774 Tage vor774

Antworte allen(3)Ich werde antworten

  • ringa_lee

    ringa_lee2017-04-11 11:00:30

    var arr = [9,8,7,6,5,1,'在', '我', '里', '阿','z','a','h','m'];
    arr.sort(function(a,b){return a.toString().localeCompare(b)}) //[1, 5, 6, 7, 8, 9, "阿", "里", "我", "在", "a", "h", "m", "z"]

    Antwort
    0
  • PHP中文网

    PHP中文网2017-04-11 11:00:30

    你用sort()方法试试.sort

    Antwort
    0
  • PHPz

    PHPz2017-04-11 11:00:30

    .sort(里面放个排序函数)

    Antwort
    0
  • StornierenAntwort