我如何打印消息到错误控制台,最好包括一个变量?
例如,像这样:
print('x=%d', x);
我如何打印消息到错误控制台,最好包括一个变量?
例如,像这样:
print('x=%d', x);
当前回答
如果您正在使用Firebug,并且需要支持IE、Safari或Opera, Firebug Lite为这些浏览器添加了console.log()支持。
其他回答
在《调试JavaScript:扔掉你的提醒!》中概述了一种跨浏览器的好方法。
console.error(message); // Outputs an error message to the Web Console
console.log(message); // Outputs a message to the Web Console
console.warn(message); // Outputs a warning message to the Web Console
console.info(message); // Outputs an informational message to the Web Console. In some browsers it shows a small "i" in front of the message.
你也可以添加CSS:
console.log('%c My message here', "background: blue; color: white; padding-left:10px;");
更多信息可以在这里找到:https://developer.mozilla.org/en-US/docs/Web/API/console
为了回答你的问题,你可以使用ES6的特性,
var var=10;
console.log(`var=${var}`);
异常被记录到JavaScript控制台。如果你想禁用Firebug,你可以使用它。
function log(msg) {
setTimeout(function() {
throw new Error(msg);
}, 0);
}
用法:
log('Hello World');
log('another message');
访问https://developer.chrome.com/devtools/docs/console-api获取完整的控制台api参考
console.error(object[Obj,....])\
在本例中,object将是错误字符串