一、this关键字的用法

this一般用于指向对象(绑定对象);

01、在普通函数调用中,其内部的this指向全局对象(window);

function funcName(){
    this.name 

网友评论