使用JavaScript檢測Firefox瀏覽器是否啟用了Firebug的代碼

來源:互聯網
上載者:User

在啟用了firebug面板後,會增加一個window.console對象及window.console.firebug變數用於儲存當前firebug的目前的版本,當關閉firebug面板後則變回正常,於是我們可以通過判斷其是否存在來檢測是否開啟了firebug。 複製代碼 代碼如下:Boolean(window.console && window.console.firebug)

於是,為了方便在沒有啟用firebug的情況下避免指令碼錯誤,可以在指令碼最前面加入以下語句手工建立空的console對象以作相容。 複製代碼 代碼如下:if (!window.console) {
// ignore firebug console call if it's not installed
// for firebug 1.6.0
(function(m, i) {
window.console = {};
while (i--) {
window.console[m[i]] = function() {};
}
})('log debug info warn exception assert dir dirxml trace group groupEnd groupCollapsed time timeEnd profile profileEnd count clear table error notifyFirebug'.split(' '), 22);
}

這樣,在IE下能正常預覽頁面,在Firefox、Chrome、Safari中也能正常輸出調試資訊。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.