今天看别人项目代码时看到这句,比较好奇这句代码具体作用是什么。
var webKitInteraction = (function(){ return { };})(); |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
相当于简化了函数的定义、创建过程。如以下代码:
functionHello(word){this.Say=function(){alert(word);};this.Print=function(){console.log(word);};}//使用方法:varhello=newHello("Helloworld.");hello.Say();hello.Print();使用时必需new一个Hello对象,才能使用,那么我看怎么精简一下:
varhello2=(function(word){return{Say:function(){alert(word);},Print:function(){console.log("Hello2:"+word);}};})("Helloworld2.");hello2.Say();hello2.Print();将初始化,和new的过程,一次性完成了。理解了嘛? |
|
|
|
|
得到多个返回结果:
varwebKitInteraction=(function(){varfirstName='james';varlastName='band';return{firstName:firstName,lastName:lastName};})(); |
|
|
|
|