JavaScript的this指向
摘要:
1、结论:js中的this 是当前方法所属的对象 'use strict' let obj = { name:'taotao', myName(){ return this } } console.log(obj.myName()) // {name: 'taotao', myName: ƒ} fu 阅读全文
posted @ 2022-11-24 17:01 totau 阅读(8) 评论(0) 推荐(0) 编辑