W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <h1>JavaScript console.clear() 方法</h1> <p>按键盘上的 F12 可在控制台视图中查看消息。</p> <p>单击按钮清除控制台:</p> <button onclick="myFunction()">Clear Console</button> <script> console.log("Hello! Press the button to clear the console!"); function myFunction() { console.clear(); } </script> </body> </html>