分享下js删除数组中的指定元素的方法。
Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } }
调用方式为:
var element = "xx" arr.remove(element)
分享下js删除数组中的指定元素的方法。
Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } }
调用方式为:
var element = "xx" arr.remove(element)
网友评论文明上网理性发言 已有0人参与
发表评论: