在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())