在这个例子中
var a = 1; ( function(x) { function inner() { alert(a); alert(x); alert(y); } var y = 3; inner(); })(2);
函数内部的范围链是什么?
函数内部的执行上下文和范围链有什么区别?
感谢您提前启发我!
解决方法
When does function inner get created? during execution time or parsing time of outer anonymous function?
每次执行外部函数时都会创建一个.
What is in the scope chain of function inner?
当你执行它时,该执行获得一个变量对象(从技术上讲,规范称之为“变量环境的绑定对象”);由为创建内部的外部函数调用创建的变量对象支持;这是由全局变量对象支持的.所以:
+------------------------------+ | global variable obj | +------------------------------+ ^ | +-----------------------------+ | variable obj for outer call | +-----------------------------+ ^ | +-----------------------------+ | variable obj for inner call | +-----------------------------+
What is in the execution context of function inner?
每个函数调用都有自己的执行上下文.我不太清楚我明白这里有什么问题.
你可以在the spec第10节,特别是section 10.4.3:“输入功能代码”中阅读所有这些内容(如果你愿意跋涉起伏的散文).