JavaScript:如何将消息打印到错误控制台?

如何将错误消息打印到错误控制台,最好包含一个变量?

例如,像这样的东西:

print('x=%d', x);

安装Firebug,然后您可以使用console.log(...)console.debug(...)等(请参阅文档以获取更多信息)。


console.error(message); //gives you the red errormessage
console.log(message); //gives the default message
console.warn(message); //gives the warn message with the exclamation mark in front of it
console.info(message); //gives an info message with an 'i' in front of the message

您还可以将CSS添加到日志消息中:

console.log('%c My message here', "background: blue; color: black; padding-left:10px;");

例外记录到JavaScript控制台中。 如果你想保持Firebug的功能,你可以使用它。

function log(msg) {
    setTimeout(function() {
        throw new Error(msg);
    }, 0);
}

用法:

log('Hello World');
log('another message');
链接地址: http://www.djcxy.com/p/51871.html

上一篇: JavaScript: How do I print a message to the error console?

下一篇: Public and Privileged methods in javascript: Why are they called that way?