?? function-scope.as
字號:
// makeswf -v 7 -s 200x150 -r 1 -o function-scope.swf function-scope.astrace ("Check the function scope chain works");Foo = function () { var bla = "inner scope"; this.bla = "this"; this.func = function () { trace (bla); var bla = "innermost scope"; this.func = function () { trace (bla); }; };};bla = "outermost scope";x = new Foo ();x.func ();x.func ();
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -