本文實例講述了JavaScript陣列前面插入元素的方法。分享給大家供大家參考。具體如下:
JS數組帶有一個unshift方法可以再數組前面添加若干個元素,下面是詳細的程式碼示範
Click the button to add elements to the array.
Note: The unshift() method does not work properly in Internet Explorer 8 and earlier, the values will be inserted, but the return value will be undefined.
執行後陣列會變成下面的樣子
Lemon,Pineapple,Banana,Orange,Apple,Mango
unshift在ie8及之前的版本工作有些問題,陣列會插入元素,但是傳回值是undefined
希望本文所述對大家的javascript程式設計有所幫助。