Firebug 正在抛出一个' $( ' 错误?

发布于 2024-08-28 18:07:33 字数 356 浏览 4 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦忆晨望 2024-09-04 18:07:33

您是否尝试过使用 jQuery() 而不是 $ ?

jQuery.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() {
 jQuery(".countdown").countdown({
  until: new Date(2010, 6 - 1, 5),
  layout:'{dn} {dl}'
 });
}); 

Have you tried using jQuery() instead of $ ?

jQuery.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() {
 jQuery(".countdown").countdown({
  until: new Date(2010, 6 - 1, 5),
  layout:'{dn} {dl}'
 });
}); 
此刻的回忆 2024-09-04 18:07:33

'$' 对象是否首先加载?在尝试使用此脚本之前,请确保已加载 jquery。

Is the '$' object loaded first? Make sure jquery is loaded before you attempt to use this script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文