声明一个数组,有多个内容,但是已知需要移除的那一项,但是不知道具体位置;
var idList=['aaa','bbb','ccc','ddd'...] var str='ccc'
删除方法
function remove(str,idList){ var index=idList.indexOf(str); idList.splice(index,1); console.log(idList) }
调用时:
remove(str,idList)
声明一个数组,有多个内容,但是已知需要移除的那一项,但是不知道具体位置;
var idList=['aaa','bbb','ccc','ddd'...] var str='ccc'
删除方法
function remove(str,idList){ var index=idList.indexOf(str); idList.splice(index,1); console.log(idList) }
调用时:
remove(str,idList)