eval 函数会在当前作用域中执行一段JavaScript 代码字符串。 var foo = 1; function test() { var foo = 2; eval('foo = 3'); return foo; } ...
確定! 回上一頁