使用 JavaScript 清除控制檯

Shraddha Paghdar 2023年1月30日 2022年5月1日
  1. JavaScript 中的控制檯是什麼
  2. 在 JavaScript 中使用 console.clear() 方法清除控制檯
使用 JavaScript 清除控制檯

Web 控制檯主要用於記錄與網頁相關的資訊,例如網路請求、JavaScript、安全錯誤、警告、CSS 等。

它允許我們通過在頁面內容中執行 JavaScript 表示式來與網頁互動。

JavaScript 中的控制檯是什麼

在 JavaScript 中,控制檯是一個關聯物件,可以訪問瀏覽器的除錯控制檯。

我們可以在網路瀏覽器中開啟一個控制檯:

  • 對於 Windows 使用 Ctrl+Shift+I
  • 對於 Mac 使用 Command+Option+K

控制檯物件為我們提供了幾種方法,例如:

  • clear()
  • warn()
  • group() and groupEnd()
  • time() and timeEnd()
  • table()
  • error()
  • custom console logs
  • log()
  • count()

在 JavaScript 中使用 console.clear() 方法清除控制檯

console 物件提供對瀏覽器除錯 console 的訪問,即 Firefox 中的 Web 控制檯。

它可以從任何 global.window 物件訪問,以通過房地產控制檯作為工作人員中的特定變體進行導航。

它公開為 Window.console,可以作為控制檯引用。

console.log('Hello World!')

控制檯將被刪除。在 Chrome 的情況下,它將列印一個簡單的覆蓋文字,例如:控制檯已被刪除,而在 Firefox 中,沒有返回訊息

console.clear()

輸出:

使用 JavaScript 清除控制檯

Shraddha Paghdar avatar Shraddha Paghdar avatar

Shraddha is a JavaScript nerd that utilises it for everything from experimenting to assisting individuals and businesses with day-to-day operations and business growth. She is a writer, chef, and computer programmer. As a senior MEAN/MERN stack developer and project manager with more than 4 years of experience in this sector, she now handles multiple projects. She has been producing technical writing for at least a year and a half. She enjoys coming up with fresh, innovative ideas.

LinkedIn