1. 首页
  2. 数据库
  3. 其它
  4. js this指向

js this指向

上传者: 2021-01-17 01:44:17上传 PDF文件 37.75KB 热度 15次
JavaScript this指向总结 在JavaScript中this永远指向当前函数的主人,即函数的调用对象或事件的调用对象,大致分为以下几种情况。 单独的this或者全局函数中的this指向window对象 console.log(this);//this => window对象 function fn1() { console.log(this);//this => window对象 } 注:在es5严格模式下,this禁止指向window,会报错 对象的方法中,this指向调用当前方法的对象 var person = { username: 钢铁侠,
用户评论