這篇文章將為大家詳細(xì)講解有關(guān)如何使用javascript變量作用域,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)專注于即墨企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),購物商城網(wǎng)站建設(shè)。即墨網(wǎng)站建設(shè)公司,為即墨等地區(qū)提供建站服務(wù)。全流程定制制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
變量分為本地變量和全局變量兩種
我們看下面這個(gè)例子:
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,因?yàn)樗且粋€(gè)全局變量;
行2輸出local,因?yàn)閙yVariable在myFunction函數(shù)中聲明的本地變量,所以作用域僅在myFunction中;
行3輸出global,因?yàn)槲覀冊(cè)诘诙谐跏蓟说娜肿兞縨yOtherVariable;
行4輸出local,myOtherFunction函數(shù)中,沒有關(guān)鍵詞var的修飾,所以這里引用全局變量myOtherVariable并將其復(fù)制loacl;
在行輸出local,這是因?yàn)樵谛?中已經(jīng)修改了myOtherVariable的值;
關(guān)于如何使用javascript變量作用域就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。