我想知道我是否可以清除控制台的一些命令。

Console.log(),可以打印…是否有清除控制台的命令?

我已经尝试console.log(控制台);得到下面这个函数。

assert: function assert() { [native code] }
constructor: function Console() { [native code] }
count: function count() { [native code] }
debug: function debug() { [native code] }
dir: function dir() { [native code] }
dirxml: function dirxml() { [native code] }
error: function error() { [native code] }
group: function group() { [native code] }
groupEnd: function groupEnd() { [native code] }
info: function info() { [native code] }
log: function log() { [native code] }
markTimeline: function markTimeline() { [native code] }
profile: function profile() { [native code] }
profileEnd: function profileEnd() { [native code] }
time: function time() { [native code] }
timeEnd: function timeEnd() { [native code] }
trace: function trace() { [native code] }
warn: function warn() { [native code] }
__proto__: Object

我想没有办法清理控制台……但我希望有人对我说……]


当前回答

如果你只是想在调试时清除控制台,你可以简单地点击“ban-circle”⃠按钮来清除console.log。

或者,只需按“Ctrl+L”来清除控制台使用你的键盘。

其他回答

总有一个好把戏:

console.log("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");

或者是上面的一个更短的变体:

console.log('\n'.repeat('25'));

这不是最优雅的解决方案,我知道:)…但作品。

对我来说,我通常只打印一个很长的“-----”分隔行,以帮助更容易阅读日志。

更新:console.clear()在所有浏览器中可用

更新:截至2012年11月6日,console.clear()现在在Chrome Canary中可用。


如果你在控制台输入clear(),它就会清除它。

我不认为有一种方法可以通过编程来实现,因为它可能会被滥用。(控制台被某些网页清除,最终用户无法访问错误信息)

一个可行的解决方案:

在控制台类型窗口中。Clear = Clear,那么您就可以在页面上的任何脚本中使用Clear。

Chrome -在聚焦控制台输入时按CTRL + L。

Firefox -在控制台输入中清除()。

Internet Explorer -在聚焦控制台输入时按CTRL + L。

边缘-在聚焦控制台输入时按CTRL + L。

祝你有愉快的一天!

你可以使用

console.clear();

如果您正在使用javascript编码。

否则,您可以使用CTR+L清除控制台编辑器。

我认为由于“安全问题”,这已不再可用。

console.log(console)代码给出:

Console
memory: MemoryInfo
profiles: Array[0]
__proto__: Console

在代码外部,_commandLineAPI是可用的。有点烦人,因为有时我只想记录而不看到旧的输出。