jQuery根據元素值或元素下標來刪除一個數組元素及數組對象方法列表

在前提不知道b在這個數組的下標,刪除b這個元素 var arrList = ['a','b','c','d']; arrList.splice(jQuery.inArray('b',arrList),1); alert(arrList); 其中jQuery.inArray('b',arrList)是b這個元素在數組arrList 中的位置 splice(index,1)函數中第一個參數index是
相關文章
相關標籤/搜索