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

例如,像这样:

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

当前回答

安装Firebug,然后你就可以使用console.log(…)和console.debug(…)等等(更多信息请参阅文档)。

其他回答

访问https://developer.chrome.com/devtools/docs/console-api获取完整的控制台api参考

    console.error(object[Obj,....])\

在本例中,object将是错误字符串

像往常一样,Internet Explorer是让您无法使用console.log()的笨重的旱冰鞋。

jQuery的日志可以很容易地进行调整,但是在任何地方都要添加它是一种痛苦。如果你正在使用jQuery,一个解决方案是把它放在你的jQuery文件的最后,首先缩小:

function log()
{
    if (arguments.length > 0)
    {
        // Join for graceful degregation
        var args = (arguments.length > 1) ? Array.prototype.join.call(arguments, " ") : arguments[0];

        // This is the standard; Firebug and newer WebKit browsers support this.
        try {
            console.log(args);
            return true;
        } catch(e) {
            // Newer Opera browsers support posting erros to their consoles.
            try {
                opera.postError(args);
                return true;
            } 
            catch(e) 
            {
            }
        }

        // Catch all; a good old alert box.
        alert(args);
        return false;
    }
}

如果你使用Safari,你可以写

console.log("your message here");

它就出现在浏览器的控制台上。

要真正回答这个问题:

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。

在《调试JavaScript:扔掉你的提醒!》中概述了一种跨浏览器的好方法。