在Chrome 14和Firefox 5(尚未測試其他瀏覽器)中,以下代碼無法正確對數(shù)字進(jìn)行排序:<script>a = new Array();a.push(10);a.push(60);a.push(20);a.push(30);a.push(100);document.write(a.sort())</script>返回10,100,20,30,60我嘗試了不同的數(shù)字,它總是像沒有出現(xiàn)0一樣,否則會正確地對數(shù)字進(jìn)行排序。有人知道為什么嗎?
Array.sort()無法正確對數(shù)字進(jìn)行排序
慕沐林林
2019-12-27 09:25:08