this的使用

全局 this 通常指向全局對象,瀏覽器中的全局對象就是 window瀏覽器

console.log(this.document === document); 
console.log(this === window); 
this.a = 91;
console.log(window.a); 

做爲對象方法的函數的 this

var o = {
    prop: 37,
    f: function() {
        return this.prop;
    }
};
console.log(o.f()); 
複製代碼
相關文章
相關標籤/搜索