我如何打印消息到错误控制台,最好包括一个变量?
例如,像这样:
print('x=%d', x);
我如何打印消息到错误控制台,最好包括一个变量?
例如,像这样:
print('x=%d', x);
当前回答
如果您正在使用Firebug,并且需要支持IE、Safari或Opera, Firebug Lite为这些浏览器添加了console.log()支持。
其他回答
这不会打印到控制台,但会打开一个警告弹出窗口,其中包含你的消息,这可能对一些调试有用:
只做:
alert("message");
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
console.log("your message here");
为我工作…我正在找这个..我用火狐浏览器。 这是我的脚本。
$('document').ready(function() {
console.log('all images are loaded');
});
适用于火狐和Chrome浏览器。
最简单的方法是:
console.warn("Text to print on console");
要真正回答这个问题:
console.error('An error occurred!');
console.error('An error occurred! ', 'My variable = ', myVar);
console.error('An error occurred! ' + 'My variable = ' + myVar);
除了error,你还可以使用info, log或warn。