`
- 浏览:
1318391 次
- 性别:
- 来自:
江苏
-
原因,想写一些通用的函数,比如数组的indexOf.
直接绑定到array的prototype很方便,但是有时候,我们不想这么做,更何况,对于array like object,调用起来也麻烦.
因此需要有一套函数,既可以绑定到array.prototype,也可以作为一种函数调用.
因此
_________________________________
function extend(f,o){
function wrap(c){//这个wrap很重要 我第一次就是在这里犯错了
return function(){
return c.apply(this.__this||this,arguments)
}
}
f=f.prototype;
for(var i in o)if(!f[i])f[i]=wrap(o[i]);
}
function wrapper(f){
var f=function (o){
return new f.prototype.init(o)
}
f.prototype={
init:function(o){this.__this=o;return this}
}
f.prototype.init.prototype=f.prototype
return f;
}
$A=wrapper()
ArrayExtend={
remove:function(e){
for(var i=this.length;i>=0;--i){
if(this[i]==e){
this.splice(i,1)
}
}
return this
}
}
extend($A,ArrayExtend)
extend(Array,ArrayExtend)
alert($A([1,2,5]).remove(1))
alert([1,2,5].remove(1))
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
在JavaScript中,实现继承的方法有很多,其中一种较为特殊的方式是通过delete操作符来辅助实现继承。delete操作符通常用于删除对象的属性,但在某些情况下,它也可以被用来间接地实现继承。接下来,我们将详细探讨...
<img src="jsimg/wallpaper.jpg" onload="javascript:if(this.width > screen.width - 350) this.width = screen.width - 350;"> ``` #### 解析: 这段代码实现了图片的自动缩放功能,当图片宽度超过屏幕宽度减去...
" onclick="javascript:window.open(this.src);" src="http://img.alixixi.com/mylogo.gif" width="85" height="55" onload="return imgzoom(this, 550)" align="center" border="0"> ``` #### 四、...
具体操作是设置允许小程序源(如微信小程序的特定URL)的`Origin`头,确保包含POST方法,以便文件可以成功上传。 2. **设置上传域名白名单**: 在微信小程序的后台管理界面,你需要将OSS的外网域名添加到上传域名...
设置`forRoot`方法的`config`参数,包括认证URL和令牌键: ```typescript import { JwtModule } from '@auth0/angular-jwt'; JwtModule.forRoot({ config: { tokenGetter: () => localStorage.getItem('access...