扫码一下
查看教程更方便
copyWithin() 方法用于从数组的指定位置拷贝元素到数组的另一个指定位置中。
语法如下
array.copyWithin(target, start, end)
返回一个新的数组。
所有主流浏览器都支持 copyWithin() 方法。
<html>
<head>
<title>JavaScript Array copyWithin Method</title>
</head>
<body>
<p>点击按钮复制数组的前面两个元素到第三和第四个位置上。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<p><strong>注意:</strong> IE 11 及更早版本不支持 copyWithin() 方法。</p>
<script>
var fruits = ["Banana", "Orange", "Apple", "Mango", "Kiwi", "Papaya"];
document.getElementById("demo").innerHTML = fruits;
function myFunction() {
document.getElementById("demo").innerHTML = fruits.copyWithin(2,0,2);
}
</script>
</body>
</html>
输出结果
Banana,Orange,Banana,Orange,Kiwi,Papaya