最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

js閉包學(xué)習(xí)心得總結(jié)

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:16:41
文檔

js閉包學(xué)習(xí)心得總結(jié)

js閉包學(xué)習(xí)心得總結(jié):首先引用來(lái)自官網(wǎng)文檔的定義: closure is the combination of a function and the lexical environment within which that function was declared. 閉包是一個(gè)函數(shù)和其內(nèi)部公開(kāi)變量的環(huán)境的集合. 簡(jiǎn)單而言, 閉包 = 函數(shù) + 環(huán)境 第一個(gè)
推薦度:
導(dǎo)讀js閉包學(xué)習(xí)心得總結(jié):首先引用來(lái)自官網(wǎng)文檔的定義: closure is the combination of a function and the lexical environment within which that function was declared. 閉包是一個(gè)函數(shù)和其內(nèi)部公開(kāi)變量的環(huán)境的集合. 簡(jiǎn)單而言, 閉包 = 函數(shù) + 環(huán)境 第一個(gè)

首先引用來(lái)自官網(wǎng)文檔的定義:

closure is the combination of a function and the lexical environment within which that function was declared.

閉包是一個(gè)函數(shù)和其內(nèi)部公開(kāi)變量的環(huán)境的集合.

簡(jiǎn)單而言, 閉包 = 函數(shù) + 環(huán)境

第一個(gè)閉包的例子

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().

其實(shí)這個(gè)栗子很簡(jiǎn)單,displayName()就是init()內(nèi)部的閉包函數(shù),而為啥在displayName內(nèi)部可以調(diào)用到外部定義的變量 name 呢,因?yàn)閖s內(nèi)部函數(shù)有獲取外部函數(shù)中變量的權(quán)限。

第二個(gè)例子

var data = [
 {'key':0},
 {'key':1},
 {'key':2}
];
function showKey() {
 for(var i=0;i<data.length;i++) {
 setTimeout(function(){
 //console.log(i); //發(fā)現(xiàn)i
輸出了3次3 //console.log(this); // 發(fā)現(xiàn) this 指向的是 Window data[i].key = data[i].key + 10; console.log(data[i].key) }, 1000); } } showKey();

上面這個(gè)例子可以正確輸出 10 11 12 嗎?

答案是:并不能,并且還會(huì)報(bào)語(yǔ)法錯(cuò)誤....

console.log(i); 發(fā)現(xiàn)i輸出了3次3,也就是說(shuō),在setTimeout 1000毫秒之后,執(zhí)行閉包函數(shù)的時(shí)候,for循環(huán)已經(jīng)執(zhí)行結(jié)束了,i是固定值,并沒(méi)有實(shí)現(xiàn)我們期望的效果。

console.log(this); 發(fā)現(xiàn) this 指向的是 Window,也就是說(shuō),在函數(shù)內(nèi)部實(shí)現(xiàn)的閉包函數(shù)已經(jīng)被轉(zhuǎn)變成了全局函數(shù),存儲(chǔ)到了內(nèi)存中。

所以需要再定義一個(gè)執(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<data.length;i++) {
 setTimeout(f1(i), 1000);
 }
}
showKey();
// 得到預(yù)期的 10 11 12

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

js閉包學(xué)習(xí)心得總結(jié)

js閉包學(xué)習(xí)心得總結(jié):首先引用來(lái)自官網(wǎng)文檔的定義: closure is the combination of a function and the lexical environment within which that function was declared. 閉包是一個(gè)函數(shù)和其內(nèi)部公開(kāi)變量的環(huán)境的集合. 簡(jiǎn)單而言, 閉包 = 函數(shù) + 環(huán)境 第一個(gè)
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top