日期:2014-05-16 浏览次数:20355 次
var test = function(x,y){
this.x = x;
this.y = y;
}
test.abc = function(){//相当于静态方法之类好像很申奥的东西
return this.x + this.y;
}
var t = new test();
alert(t.abc());//会收没有这个方法
alert(test.abc());//也会报错因为里面this.x和this.y代表的是test这个函数里面的x和y都是underfined