JavaScript数组前⾯插⼊元素的⽅法
本⽂实例讲述了JavaScript数组前⾯插⼊元素的⽅法。分享给⼤家供⼤家参考。具体如下:
JS数组带有⼀个unshift⽅法可以再数组前⾯添加若⼲个元素,下⾯是详细的代码演⽰
复制代码代码如下:
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to add elements to the array.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
javascript数组对象
{
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.unshift("Lemon","Pineapple");
var ElementById("demo");
x.innerHTML=fruits;
}
</script>
<p><b>Note:</b> The unshift() method does not work properly in Internet Explorer 8 and earlier, the values will be inserted, but the return value will be <em>undefined</em>.</p>
</body>
</html>
执⾏后数组会变成下⾯的样⼦
Lemon,Pineapple,Banana,Orange,Apple,Mango
unshift在ie8及之前的版本⼯作有些问题,数组会插⼊元素,但是返回值是undefined
希望本⽂所述对⼤家的javascript程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论