在JavaScript中,我們可以使用Array對象的unshift()方法在數組開頭添加元素,並返回該數組。
語法:
數組對象.unshift(新元素1,新元素2,…,新元素n);
說明:
“新元素1,新元素2,…,新元素n”是可選項,表示在數組開頭添加的新元素。
舉例:
在線測試<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script type="text/javascript"> //創建數組的同時對元素賦值 var arr = new Array("html", "css", "javascript"); document.write("原數組元素:" + arr); document.write("<br/>"); arr.unshift("jQuery", "Ajax"); document.write("添加新元素後的數組元素:" +arr); </script> </head> <body> </body> </html>
在浏覽器預覽效果如下: