JavaScript 變數範圍分析

來源:互聯網
上載者:User

複製代碼 代碼如下:/* 代碼1 */
var scope = "global ";
function checkScope() {
var scope = "local ";
function childCheck() {
var scope = "childLocal ";
document.write(scope);
}
function childUndefined() {
document.write(scope);
var scope;
}
function childOverride() {
scope = "childOverride ";
document.write(scope);
}
document.write(scope); //輸出"local"
childCheck(); //輸出"childLocal"
childUndefined(); //輸出"undefined"
childOverride(); //輸出"childOverride"
document.write(scope); //輸出"childOverride"
}
checkScope(); //輸出"local childLocal undefinedchildOverride childOverride"
document.write(scope); //輸出"global "

全域範圍與局部範圍
全域(global)變數的範圍是全域的,在Javascript中處處有定義;而函數內部聲明的變數是局部(local)變數,其範圍是局部性的,只在函數體內部有定義。對於下面的輸出讀者應不會感到意外。 複製代碼 代碼如下:/* 代碼2 */
var scope = "global";
function checkScope() {
var scope = "local";
document.write(scope);
}
checkScope(); //輸出"local"
document.write(scope); //輸出"global"

全域變數範圍中使用變數可以不用var語句,但在聲明局部變數是一定要使用var語句,否則會視為對全域變數的引用。看下面代碼: 複製代碼 代碼如下:/* 代碼3 */
var scope = "global";
function checkScope() {
scope = "local";
document.write(scope);
}
checkScope(); //輸出"local"
document.write(scope); //輸出"local"

沒有塊範圍
Javascript沒有塊級範圍,函數中聲明的變數在整個函數中都是有定義的。對於下面的代碼對於生疏的讀者可能頗感意外: 複製代碼 代碼如下:/* 代碼4 */
var scope = "global";
function checkScope() {
document.write(scope); //語句4.1
var scope = "local"; //語句4.2
document.write(scope);
}
checkScope(); //輸出"undefinedlocal"

由於語句4.1(var scope = "local";)聲明的變數在整個checkScope函數範圍內都有效,因此在語句4.2(document.write(scope); )執行的時scope引用的是局部變數,而此時局部變數scope尚未定義,所以輸出”undefined”。因此一個好的編程習慣是將所有的變數聲明集中起來放在函數的開頭。

在瞭解了上述內容之後,讀者再看看代碼1應該不會感到困惑了。

對象的屬性變數
對象的屬性變數比較容易理解,看一下下面的代碼讀者應該不會感到疑惑。 複製代碼 代碼如下:/* 代碼5 */
var scope = "global ";
var obj = new Object();
obj.scope = "object ";
obj.checkScope = function () {
var scope = "loacl ";
document.write(scope); //輸出"loacl"
document.write(this.scope); //輸出"object"
document.write(window.scope); //輸出"global"
}
obj.checkScope(); //輸出"loacl object global"

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.