/*清空控制台信息*/
function clearConsole() {
console.clear();
let fontFamily = "微软雅黑";
let fontSize = 40;
let fontWeight = "bold";
let backgroundColor = "green";
console.log("%c有代码洁癖的强哥温馨提示:百度的报错代码清除掉!", "background:" + backgroundColor +
"; color:white;font-family: '" + fontFamily + "'; font-size:" + fontSize + "px;font-weight:" + fontWeight);
}

清空控制台Console.log()信息_css