您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何使用javascript變量作用域,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
變量分為本地變量和全局變量兩種
我們看下面這個例子:
var myVariable = 'global'; myOtherVariable = 'global'; function myFunction(){ var myVariable = 'local'; return myVariable; } function myOtherFunction(){ myOtherVariable = 'local'; return myOtherVariable; } console.log(myVariable); //{行1} global console.log(myFunction()); //{行2} local console.log(myOtherVariable); //{行3} global console.log(myOtherFunction()); //{行4} local console.log(myOtherVariable); //{行5} local
行1輸出global,因為他是一個全局變量;
行2輸出local,因為myVariable在myFunction函數(shù)中聲明的本地變量,所以作用域僅在myFunction中;
行3輸出global,因為我們在第二行初始化了的全局變量myOtherVariable;
行4輸出local,myOtherFunction函數(shù)中,沒有關(guān)鍵詞var的修飾,所以這里引用全局變量myOtherVariable并將其復(fù)制loacl;
在行輸出local,這是因為在行4中已經(jīng)修改了myOtherVariable的值;
關(guān)于如何使用javascript變量作用域就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。