function func() {
this.xx = 'xx';
}
func.prototype.json = {
method : function() {
//请问能不能获取到 func 的 this;
//不想用 call();
var me = this; //this指 func
console.log(me.xx);
}
}
最终想得到:
var f = new func();
f.json.method(); 输出 xx;
------------------------------------------------
请问这个有没可能实现? 实现方式是什么;
请给个实例
我觉得不可能拿到吧。你还是用call吧!
好像是不行的;
还是写在构造方法里好;