使用控制檯

在許多環境中,你可以訪問全域性 console 物件,該物件包含與標準輸出裝置通訊的一些基本方法。最常見的是,這將是瀏覽器的 JavaScript 控制檯( 有關詳細資訊,請參閱 ChromeFirefoxSafariEdge )。

// At its simplest, you can 'log' a string
console.log("Hello, World!");

// You can also log any number of comma-separated values
console.log("Hello", "World!");

// You can also use string substitution
console.log("%s %s", "Hello", "World!");

// You can also log any variable that exist in the same scope
var arr = [1, 2, 3];
console.log(arr.length, this);

你可以使用不同的控制檯方法以不同方式突出顯示輸出。其他方法對於更高階的除錯也很有用。

有關更多文件,相容性資訊以及有關如何開啟瀏覽器控制檯的說明,請參閱控制檯主題。

注意:如果你需要支援 IE9,請刪除 console.log 或將其呼叫包裝如下,因為在開啟開發人員工具之前未定義 console

if (console) { //IE9 workaround
    console.log("test");
}