闭包练习
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了闭包练习相关的知识,希望对你有一定的参考价值。
1 var name = "window"; 2 var foo = { 3 name: "hello", 4 setName:function(){ 5 return function(){ 6 return this.name; 7 }; 8 } 9 }; 10 alert(foo.setName()()); 11 // window
1 var name = "window"; 2 var foo = { 3 name: "hello", 4 setName:function(){ 5 var that = this; 6 return function(){ 7 return that.name; 8 }; 9 } 10 }; 11 alert(foo.setName()()); 12 //hello
以上是关于闭包练习的主要内容,如果未能解决你的问题,请参考以下文章