javascript - 中文,英文按首字母排序。
巴扎黑
巴扎黑 2017-04-11 10:58:30
0
3
771

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

巴扎黑
巴扎黑

reply all(3)
左手右手慢动作
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"]
Ty80

你用sort()方法试试.sort

PHPzhong

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!