您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關JavaScript中如何給數組添加元素,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
js push()方法添加數組元素
push()方法可以將一個或多個新元素添加到數組的結尾,然后返回新數組的長度,且所有主要瀏覽器都支持push()方法。
語法:
數組.push(元素1,元素2,元素3.....元素n);/*push()方法里必須有一個參數*/
代碼示例:把dog1,dog2兩個元素添加到animal數組的末尾
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div class="demo"> <p>數組:cat,elephant,tiger,rabbit;<br>數組長度為:4</p> <button onclick="myFunction()">點我--push()添加元素</button> </div> </body> <script type="text/javascript"> function myFunction(){ var animal = ["cat", "elephant", "tiger","rabbit"]; document.write("<p>數組:"+animal+";<br>數組長度:"+ animal.length+"</p>"); var animal1= animal.push("dog1","dog2"); document.write("<p>新數組:"+animal+";<br>數組長度:"+ animal1+"</p>"); } </script> </html>
說明:
數組.length可以返回數組的長度
js unshift()方法添加數組元素
unshift()方法可以將一個或多個新元素添加到數組的開頭,然后返回新數組的長度,且所有主流瀏覽器都支持unshift方法。
語法:
數組.unshift(元素1,元素2,元素3.....元素n);/* unshift()方法里必須有一個參數*/
代碼示例:把dog1,dog2兩個元素添加到animal數組的開頭
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div class="demo"> <p>數組:cat,elephant,tiger,rabbit;<br>數組長度為:4</p> <button onclick="myFunction()">點我--unshift()添加元素</button> </div> </body> <script type="text/javascript"> function myFunction(){ var animal = ["cat", "elephant", "tiger","rabbit"]; document.write("<p>數組:"+animal+";<br>數組長度:"+ animal.length+"</p>"); var animal1= animal.unshift("dog1","dog2"); document.write("<p>新數組:"+animal+";<br>數組長度:"+ animal1+"</p>"); } </script> </html>
js splice()方法添加數組元素
splice()方法可以將一個或多個新元素添加到數組的指定位置,插入位置的元素自動后移,且所有主要瀏覽器都支持splice方法。
語法:
數組.splice(index,howmany,item1,.....,itemN);
index:表示從哪里添加或者刪除元素;
howmany:表示應該刪除多少個元素,賦值為0就表示不刪除元素;
item:表示要添加到數組的新元素。
代碼示例:把dog1,dog2兩個元素添加到animal數組的第二個位置里(第一個元素后)
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div class="demo"> <p>數組:cat,elephant,tiger,rabbit;<br>數組長度為:4</p> <button onclick="myFunction()">點我--splice()添加元素</button> </div> </body> <script type="text/javascript"> function myFunction(){ var animal = ["cat", "elephant", "tiger","rabbit"]; document.write("<p>數組:"+animal+";<br>數組長度:"+ animal.length+"</p>"); var animal1= animal.splice(1,0,"dog1","dog2"); document.write("<p>新數組:"+animal+";<br>數組長度:"+ animal1.length+"</p>"); } </script> </html>
以上就是JavaScript中如何給數組添加元素,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。