<div class="codetitle"> <span><a style="CURSOR: pointer" data="44810" class="copybut" id="copybut44810" onclick="doCopy('code44810')"><u>複製代碼</u></a></span> 代碼如下:</div> <div class="codebody" id="code44810"> <br>//W3C/1. Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br><br><br> <title>重新排序方法與操作方法</title> <br> <script type="text/javascript"> <BR> ){<BR> var values=[0,10,2,3,12,5];<BR> alert(values.reverse());//reverse()); alert(values.sort());//sort()方法比較的是字串,大多數情況不是最佳的方案<BR> alert(values.sort(compare));//sort()方法可以接收一個比較函數作為參數<BR> }<BR><BR> //自訂比較函數,而回傳的陣列是升序,也可以透過改變程式碼,如value1<value2 return 1等來達到結果是降序的。 <br> function compare(value1,value2){<br> if(value1 < value2){<BR> > value2){<BR> return 1;<BR> } else{<BR> return 0;<BR> }<BR> }< }<BR> function basicConcat() {<BR> var colors=["red","blue","pink"];<BR> var colors2=colors.concat("yellow",["black","/owns.concat("yellow",["black","/own,"black]); blue,pink,yellow,black,brown<br> alert(colors2);<br> }<BR><BR> }<BR><BR> }<BR><br> 參數,即截取 end > str >=start(即不包括結束位置的項目)<br> function basicSlice(){<BR> var colors=["red","blue var colors=["red"," "white"];<BR> var colors2=colors.slice(1);<BR> alert(colors3);<BR> }<BR><BR> function basicSplice(){<BR> var removed=colors. splice(0,2);//表格刪除即刪除前兩項<br> alert("刪除的項目:" removed "----現在的項目:" colors)<br> 1,0,"black","gray");//表示在位置1處刪除0項,插入新加項<BR> alert("現在的項:" colors);<BR> alert("現在的項:" colors);<BR> alert("現在的項:" colors);<BR> alert("現在的項:" colors);<BR> 🎜> </script><br><br><br> <input type="button" value="排序Sort" onclick="basicSort();"><br> <input type="button" value="concat" onclick="basicConcat();"><br> <input type="button" value="slice" onclick="basicSlice();"><br> <input type="button" value="splice" onclick="basicSplice();"><br><br><br><br><br> </div>