<script>
Function.prototype.bind=function(o)
{
var args=Array.prototype.slice.call(arguments,1);
this.apply(o, args);
}
function a(p1,p2){
alert(p1+p2+this.x);
}
var o={x:1};
a.bind(o,1,2);
</script>
posted on 2007-08-30 02:03
汪杰 阅读(876)
评论(0) 编辑 收藏 引用 所属分类:
javascript