console控制台打印有色文字
2022-12-27 本文已影响0人
hao_developer
%c后面必须
才能在手机上生效
image.png
const testStr = '2444081234ab56789004';
console.log(`%c ${testStr}`, 'color:green');//%c后面必须加空格才能在手机上生效
console.log('%c 1111111 %c 222222 %c 333333', 'color:yellow','color:pink','color:red');