一. this 的绑定规则1. 绑定规则1.1 默认绑定什么情况下使用默认绑定呢?独立函数调用。
独立的函数调用:函数没有被绑定到某个对象上进行调用
var obj = {
name: 'why',
bar: function ()
2023-01-13