时间:2021-07-01 10:21:17 帮助过:21人阅读
Array.prototype.each = function(fn) { return this.length ? [fn(this.slice(0,1))].concat(this.slice(1).each(fn)) : []; }; [1,2,3,4].each(function(x){ document.write(x + "<br/>"); });
< 上一篇
javascript 基础篇4 window对象,DOM
下一篇 >
javascript 基础篇3 类,回调函数,内置对象,事件处理
记住我的登录 忘记密码?
登录
我已阅读用户协议及版权声明
注册