function f() { return "global"; } function test(x) { var g = f, result = []; if (x) { g = function() { return "local"; } result.push(g()); } ...
確定! 回上一頁