使用命令清除控制台

使用命令清除控制台

本文介绍了使用命令清除控制台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

就像这是我的控制台中目前有很多行一样

Like this is my console currently with lots of line in it

有没有可以用来清除控制台的javascript或jquery命令.

Is there any javascript or jquery command with which i can clear the console.

推荐答案

尝试一下:

console.clear();

您可以在脚本中使用此代码.阅读有关控制台的更多信息.

You can use this code in your scripts. Read more about console.

更新:如@evolutionxbox所示,您可以仅使用clear()来执行此操作.您将得到相同的结果.

Update: As noticed @evolutionxbox you can use just clear() to do that. You'll get the same result.

您还可以使用键盘快捷键在Web浏览器中清除控制台: +

You can also clear console in the web browsers with keyboard shortcuts: +

Firebug中的清除控制台: +

Clear console in Firebug: +

这篇关于使用命令清除控制台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 08:21