摘要: //按指定位置删除Array.prototype.removeIndex = function (index) { if (index > - 1) { this.splice(index, 1); }};//按元素名称删除Array.prototype.remove = function... 阅读全文
posted @ 2014-09-29 11:30 yiwan_tang 阅读(22312) 评论(0) 推荐(0) 编辑