Colors in JavaScript console

前端 未结 27 2467
说谎
说谎 2020-11-22 11:42

Can Chrome\'s built-in JavaScript console display colors?

I want errors in red, warnings in orange and console.log\'s in green. Is that possible?

27条回答
  •  孤独总比滥情好
    2020-11-22 12:17

    template system, useful if you want to create colorful line text without creating full style for every block

    var tpl = 'background-color:greenyellow; border:3px solid orange; font-size:18px; font-weight: bold;padding:3px 5px;color:';
    console.log('%cNo #1' + '.%cRed Text' + '%cBlue Text', 
                 tpl+'magenta', tpl+'red', tpl+'blue');
    

提交回复
热议问题