http://www.ruanyifeng.com/blog/2010/05/object-oriented_javascript_inheritance.html这个讲的也很清晰
2017-03-12
http://www.ibm.com/developerworks/cn/web/1306_jiangjj_jsinstanceof/讲的很不错
2017-03-12
已采纳回答 / in23
this 指的是调用当前方法(函数)的那个对象,也就是说函数在谁那被调用,this就指的是谁function a() { console.log(this); } var b = {}; b.hehe = a; b.hehe(); //这时候this指向b//常见的就是绑定事件 没有拥有者,直接调用,就指向windowfunction a() { console.log(this); } a(); //this指向window
2017-03-11