js里面,this指的是什么在一般函数方法中使用 this 指代全局对象function test(){this.x = 1alert(this.x)}test() 12.作为对象方法调用,this 指代上级对象function test(){a2023-04-26JavaScript300