当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript push()方法
The push() method adds one or more elements to the end of an array and returns the new length.
使用push()方法可以向数组的末尾添加一个或多个元素并且返回新的长度
arrayObject.push(newelement1,newelement2,....,newelementX) |
Parameter 参数 | Description 描述 |
---|---|
newelement1 | Required. The first element to add to the array 必要选项。向数组添加的第一个元素 |
newelement2 | Optional. The second element to add to the array 可选项。向数组添加的第二个元素 |
newelementX | Optional. Several elements may be added 可选项。可添加多个元素 |
Note: This method changes the length of the array.
注意:这个方法会改变数组的长度
Tip: To add one or more elements to the beginning of an array, use the unshift() method.
提示:要向数组的头部加入一个或多个元素,可以使用unshift()方法
In this example we will create an array, and then change the length of it by adding a element:
在这个举例中我们将建立一个数组,并且接着改变加入元素后数组的长度:
<script type="text/javascript"> var arr = new Array(3) document.write(arr + "<br />") </script> |
The output of the code above will be:
上面代码的输出结果为:
Jani,Hege,Stale |
push()
How to use push() to change the length of an array.
怎样使用push()来改变数组的长度