Internet Explorer 8 內建就有開發者工具, 看起來和使用方法都和 Firebug 有點像.
IE 的開發者工具開啟
- 於 工具 -> 開發者工具 (F12) 啟用
- 或者 Shift + F12 開啟
使用 Console 工具來 Log / Debug
- console.log
- console.info
- console.warn
- console.error
- console.assert
Console Debug Function
- Debug function (取自 MSDN: Debugging Script with the Developer Tools - 此篇文章也有詳細教學)
console.debug = function(name, value) {
console.warn("DEBUG: " + name + "==" + value);
}