答案 0 :(得分:0)
我认为你需要的是console.clear();
。
答案 1 :(得分:0)
我还没有通过测试,但看起来你的javascript正在卖给你。我发现这个网站似乎声称要抓住javascript控制台输出。
(function() {
try {
var $_console$$ = console;
Object.defineProperty(window, "console", {
get: function() {
if ($_console$$._commandLineAPI)
throw "For Security Reasons - The script console is disabled for this site.";
return $_console$$
},
set: function($val$$) {
$_console$$ = $val$$
}
})
} catch ($ignore$$) {
}
})();
来源: https://davidwalsh.name/disable-console; http://pastebin.com/Lx5gjXsA