似月是你
God helps those who help themselves.
天 道 酬 勤
摘要: 从数组删除内容remove方法 // remove方法 Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index > -1) { this.splice(index, 1); } }; 阅读全文
posted @ 2020-11-09 11:49 似月是你 阅读(415) 评论(0) 推荐(0) 编辑