js数组删除元素

Array.prototype.remove = function(val) {
var index = this.indexOf(val);
if (index > -1) {
this.splice(index, 1);
}
return this;
};

groupRoomId.remove($("#input_roomid").val());
 

posted on 2019-02-15 17:18  superficial。  阅读(131)  评论(0编辑  收藏  举报

导航