有什么方法可以在特定范围(但不是全局)上执行 eval( )吗?
例如,以下代码不起作用(a 在第二个语句中未定义),因为它们在不同的范围内:
eval(var a = 1);
eval(alert(a));
如果可能,我想即时创建一个范围。例如(语法肯定是错误的,但只是为了说明这个想法)
var scope1;
var scope2;
with scope1{
eval(var a = 1); eval(alert(a)); // this will alert 1
}
with scope2{
eval(var a = 1); eval(a++); eval(alert(a)); // this will alert 2
}
with scope1{
eval(a += 2); eval(alert(a)); // this will alert 3 because a is already defined in scope1
}
关于如何实现这样的目标的任何想法?谢谢!