JavaScript sort() 方法数组排序文字【每日一段代码92】
<html>
<body>
<script type="text/javascript">
var arr=new Array(6);
arr[0]="George";
arr[1]="John";
arr[2]="Thomas";
arr[3]="James";
arr[4]="Adrew";
arr[5]="Martin";
document.write(arr+"<br />");
document.write(arr.sort());
</script>
</body>
</html>
【sort() 方法用于对数组的元素进行排序。】
【arrayObject.sort(sortby)。参数:sortby 可选。规定排序顺序。必须是函数。】
html5