当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。