JS的this关键字

this代表的意思是当前调用this关键字函数所在的对象

function Dog() {
    console.log(this);
}

Dog();//this代表Window, 因为函数没有用于产生对象,所以它仍属于全局的函数

new Dog();//this代表Dog对象

results matching ""

    No results matching ""