我一直在尝试清除 Chrome 控制台,但是它一直给我这个错误:
Uncaught TypeError: Object #<Console> has no method 'clear'
老实说,我不知道为什么它一直给我这个错误。console.log(...)
有效,许多其他控制台功能也有效,只是没有clear()
.
<!DOCTYPE HTML>
<html>
<head>
<script>
console.log("Hello, World.");
console.clear();
</script>
</head>
<body>
</body>
</html>
有任何想法吗?
编辑: https ://developers.google.com/chrome-developer-tools/docs/console#clearing_the_console_history
声明“从 JavaScript 调用 console.clear() 控制台 API。” 所以我想有一些方法可以在 javascript 脚本中使用 clear() 函数,但我想我误解了。