Firebug 正在抛出一个' $( ' 错误?
我在 Firebug 中遇到了一个奇怪的错误,但在 Webkit 中却没有遇到这个错误。该错误在 firebug 中显示为“ $( ”。
以下是可能导致其翻转的代码:
$.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() {
$(".countdown").countdown({
until: new Date(2010, 6 - 1, 5),
layout:'{dn} {dl}'
});
});
该错误不是特定于倒计时脚本的,它只是在尝试调用我刚刚在 firefox 中加载的任何插件时出现错误有什么想法吗?
I am getting a strange error in Firebug, that I am not getting in Webkit. The error comes up as ' $( ' in firebug.
Here's the code that is supposedly causing it to flip:
$.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() {
$(".countdown").countdown({
until: new Date(2010, 6 - 1, 5),
layout:'{dn} {dl}'
});
});
The error isn't specific to the countdown script, it's just giving me an error trying to call any plugin I just loaded in firefox. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用 jQuery() 而不是 $ ?
Have you tried using jQuery() instead of $ ?
'$' 对象是否首先加载?在尝试使用此脚本之前,请确保已加载 jquery。
Is the '$' object loaded first? Make sure jquery is loaded before you attempt to use this script.