我的main.js文件在index.html中加载,以
开头console.clear();
所以我在项目开始之前得到一个干净的控制台。 奇怪的是,跟随console.clear的任何日志都不再显示了!
console.clear();
console.log("starting the project");
console.log("but these logs are not shown...");
如何清除控制台然后开始记录消息?
答案 0 :(得分:3)
对我有用http://jsfiddle.net/3rd26za5/
console.log("before clear");
console.clear();
console.log("starting the project");
console.log("but these logs are not shown...");
答案 1 :(得分:0)
代码:
console.clear();
console.log("This prints normally.");
输出:
This prints normally.
适合我。必须是您正在使用的软件中的错误。