//严格模式 let testword = 'global' function foo(){ console.log(this.testword) } let a ={ testword:'object testword' } foo() foo.call(a)