本文由 DTcms素材网 – DT素材网 发布,转载请注明出处,如有问题请联系我们!JavaScript如何给数组添加元素?js数组添加元素的3种方法(代码实例)
收藏首先我们来简单介绍一下往js数组中添加元素的3种方法是什么?它们分别为:
1、js push()方法添加数组元素
2、js unshift()方法添加数组元素
3、js splice()方法添加数组元素
下面我们来具体介绍上述方法是怎么往js数组中添加元素的,通过简单的代码实例介绍。
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>
效果图:
更多 推荐文章
- 04-17中国首个东盟电子商务平台“美丽湾”启动
- 04-16电商下乡,京东、苏宁、阿里农村遭遇战打响?
- 04-16买房还是炒股,2015年买房无法拒绝的5大理由
- 04-161季度多家房企利润跌幅超50% 去库存促销战打响