當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM console.clear()用法及代碼示例


HTML中的console.clear()方法用於清除控製台,並在每次執行時在控製台上寫一些消息“Console was cleared”。此方法不需要任何參數。

用法:

console.clear()

以下示例程序旨在說明HTML中的console.clear()方法:


例:

<!DOCTYPE html> 
<html> 
    <head>  
        <title>DOM console.clear() Method in HTML</title>  
        <style>  
            h1 {  
                color:green;  
            }  
            h2 { 
                font-family:Impact; 
            } 
            body {  
                text-align:center;  
            }  
        </style>  
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1>  
        <h2>DOM console.clear() Method</h2>  
        <p>To view the message in the console press the F12  
        key on your keyboard.</p> 
        <p> 
           To clear the console, double click  
           the button below:
        </p><br> 
        <button ondblclick="clear_console()"> 
           Clear Console 
        </button> 
        <script> 
            console.log("GeeksforGeeks is a portal for geeks!"); 
            function clear_console() { 
                console.clear(); 
            } 
        </script> 
    </body> 
</html>                    

輸出:

按下F12鍵時的控製台視圖:

雙擊清除按鈕後,查看控製台視圖:

支持的瀏覽器:console.clear()方法支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM console.clear() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。