40
6
110
1008
135
142
/*** 为array添加remove方法* * @param s* 移除的数组中的值* @return*/Array.prototype.remove = function(s) {for ( var i = 0; i < this.length; i++) {if (s == this[i])this.splice(i, 1);}}/** ----------------...