当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript slice()方法
The slice() method returns selected elements from an existing array.
slice()方法可将现存数组中的选中元素返回
arrayObject.slice(start,end) |
Parameter 参数 | Description 描述 |
---|---|
start | Required. Specify where to start the selection. Must be a number 必要选项。指定开始的位置。必须是数字 |
end | Optional. Specify where to end the selection. Must be a number 可选项。指定结束的位置。必须是数字 |
Tip: You can use negative numbers to select from the end of the array.
提示:你可以使用负数从数组的后面来势选择
Note: If end is not specified, slice() selects all elements from the specified start position and to the end of the array.
注意:如果结束位置没有指定,那么slice()会从选择开始位置到数组的最后位置。
In this example we will create an array, and then display selected elements from it:
在这个举例中我们将建立一个数组。并且选择性的显示其中的一部分元素:
<script type="text/javascript"> |
The output of the code above will be:
上面代码的输出结果为:
Jani,Hege,Stale |
In this example we will create an array, and then display selected elements from it:
在这个举例中我们将建立一个数组,并将选中的元素显示出来:
<script type="text/javascript"> |
The output of the code above will be:
上面代码输出的结果为:
Jani,Hege,Stale,Kai Jim,Borge,Tove |
slice()
How to use slice() to display selected elements from an existing array.
怎样使用slice()来从现有的数组中选择性的显示其中的元素。