摘要: jquery 删除数组元素 Array.prototype.remove = function(dx) { if (isNaN(dx) || dx > this.length) { return false; } for (var i = 0, n = 0; i < this.length; i++) { if (this[i] != this[dx]) { this[n++] = this[i]; }... 阅读全文
posted @ 2014-03-24 16:34 樱花飞落ll 阅读(10328) 评论(0) 推荐(0) 编辑