js 中添加php数组元素,JS数组添加元素方法总结

本篇文章介绍了如何向JS数组中添加新的元素,分别使用不同的几种方法去给JS数组添加元素,数组在JS中是很常用的数据类型之一,而对数组进行操作这是我们必会的基础之一。

下面我们来看一下有哪些方法可以对JS数组进行元素的添加!

在数组的开头添加新元素 - unshift()

测试代码:

Click the button to add elements to the array.

Try it

function myFunction()

{

var fruits = ["Banana", "Orange", "Apple", "Mango"];

fruits.unshift("Lemon","Pineapple");

var x=document.getElementById("demo");

x.innerHTML=fruits;

}

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

在数组的第2位置添加一个元素 - splice()

测试代码:

Click the button to add elements to the array.

Try it

function myFunction()

{

var fruits = ["Banana", "Orange", "Apple", "Mango"];

fruits.splice(2,0,"Lemon","Kiwi");

var x=document.getElementById("demo");

x.innerHTML=fruits;

}

测试结果:Banana,Orange,Lemon,Kiwi,Apple,Mango

数组的末尾添加新的元素 - push()

测试代码:

Click the button to add a new element to the array.

Try it

var fruits = ["Banana", "Orange", "Apple", "Mango"];

function myFunction()

{

fruits.push("Kiwi")

var x=document.getElementById("demo");

x.innerHTML=fruits;

}

测试结果:Banana,Orange,Apple,Mango,Kiwi

这些方法每个都有自己的好处,对于JS中数组操作不太熟悉的同学更要好好的来练习一下哦!

推荐阅读:

push() 方法可向数组的末尾添加一个或多个元素,并返回新的长度。

本篇文章是对数组的多种操作。

js数组中删除指定元素是我们每个人都遇到的问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值