var a={n:123}; var b=a; a.x=a={n:456}; console.log(a.x);//undefined console.log(b);//123为什么输出的是undefined和123; 查看完整描述