10 09/2014

chrome console log color

最后更新: Wed Sep 10 2014 12:36:06 GMT+0800

给 console 点颜色看看!

function clog(msg, color) {
    if(color){
        console.log("%c" + msg, "color:" + color + ";font-weight:bold;");
    }else{
        console.log(msg);
    }        
}
clog(123);
clog(123,'red');

































Format specifierDescription
%sFormats the value as a string.
%d or %iFormats the value as an integer.
%fFormats the object as a floating point value.
%oFormats the value as an expandable DOM element (as in the Elements panel).
%OFormats the value as an expandable JavaScript object.
%cApplies CSS style rules to output string specified by the second parameter.