在jquery中删除数组元素的方法:1.新建html项目,引入jquery;2.在项目中定义数组;3.使用each()方法遍历数组;4.使用splice()方法删除数组元素;
具体步骤如下:
1.首先,在新建一个html项目,在项目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在项目中定义一个数组;
var array = ['www','yisu','com'];
3.数组定义好后,使用each()方法对数组进行遍历;
$.each(array.function(index,item){
});
4.遍历数组后,使用splice()方法即可删除指定的数组元素;
#删除数组中的www元素
$.each(array.function(index,item){
if(itme=='www'){
array.splice(index,1);
}
});
相关扩展:
1)使用pop()方法删除数组中的最后一个元素
document.write(array.pop())
2)使用shift()方法删除数组中的第一个元素
document.write(array.shift())
3)使用sort()方法对数组的元素进行排序
document.write(array.sort())