這篇文章主要為大家展示了“js閉包怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“js閉包怎么用”這篇文章吧。
專注于為中小企業(yè)提供網(wǎng)站建設、成都網(wǎng)站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)資溪免費做網(wǎng)站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉變。
首先引用來自官網(wǎng)文檔的定義:
closure is the combination of a function and the lexical environment within which that function was declared.
閉包是一個函數(shù)和其內(nèi)部公開變量的環(huán)境的集合.
簡單而言, 閉包 = 函數(shù) + 環(huán)境
第一個閉包的例子
function init() { var name = 'Mozilla'; // name is a local variable created by init function displayName() { // displayName() is the inner function, a closure alert(name); // use variable declared in the parent function } displayName(); } init(); because inner functions have access to the variables of outer functions, displayName() can access the variable name declared in the parent function, init().
其實這個栗子很簡單,displayName()就是init()內(nèi)部的閉包函數(shù),而為啥在displayName內(nèi)部可以調用到外部定義的變量 name 呢,因為js內(nèi)部函數(shù)有獲取外部函數(shù)中變量的權限。
第二個例子
var data = [ {'key':0}, {'key':1}, {'key':2} ]; function showKey() { for(var i=0;i上面這個例子可以正確輸出 10 11 12 嗎?
答案是:并不能,并且還會報語法錯誤....
console.log(i); 發(fā)現(xiàn)i輸出了3次3,也就是說,在setTimeout 1000毫秒之后,執(zhí)行閉包函數(shù)的時候,for循環(huán)已經(jīng)執(zhí)行結束了,i是固定值,并沒有實現(xiàn)我們期望的效果。
console.log(this); 發(fā)現(xiàn) this 指向的是 Window,也就是說,在函數(shù)內(nèi)部實現(xiàn)的閉包函數(shù)已經(jīng)被轉變成了全局函數(shù),存儲到了內(nèi)存中。
所以需要再定義一個執(zhí)行函數(shù)
var data = [ {'key':0}, {'key':1}, {'key':2} ]; function showKey() { var f1 = function(n){ data[i].key = data[i].key + 10; console.log(data[i].key) } for(var i=0;i以上是“js閉包怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當前標題:js閉包怎么用
標題網(wǎng)址:http://weahome.cn/article/ghjsde.html