js数组删除元素
摘要:
Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } return this;}; groupRoomId.remove($ 阅读全文
posted @ 2019-02-15 17:18 superficial。 阅读(131) 评论(0) 推荐(0) 编辑