前端之家收集整理的这篇文章主要介绍了
javascript – 使用命令清除控制台,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
像这样我的控制台目前有很多线
是否有任何javascript或jquery命令,我可以清除控制台.
I don’t want to hit clear button with mouse. Only a code command is required.
试试这个:
console.clear();
您可以在脚本中使用此代码.阅读更多关于console.
Note that in Google Chrome,console.clear() has no effect if the user
has selected “Preserve log upon navigation” in the settings.
更新:注意到@evolutionxBox你可以使用clear()来做到这一点.你会得到相同的结果.
您还可以使用键盘快捷键在Web浏览器中清除控制台:
CTRL L.
在Firebug中清除控制台:ALT R.
原文链接:https://www.f2er.com/js/149952.html