Firefox/Firebug: Console.log("..."); causes TypeError: Console.log is not a function

Firefox/Firebug: Console.log("..."); causes TypeError: Console.log is not a function

我找不到解决这个问题的方法。我看过

我的代码很简单:

$(function(){
    Console.log("Starting");
});

我已打开 firebug,选择了“控制台”选项卡,并选择了“JS”和“日志记录”选项。我收到这两个错误:

jQuery.Deferred exception: Console.log is not a function

TypeError: Console.log is not a function

可能出了什么问题?

您正在使用 C 而不是 c:

$(function(){
    console.log("Starting");
});

Javascript 函数和变量区分大小写。