错误——jQuery('span.timeago').timeago();不是一个函数
我在我的网站上安装了灯箱。当我这样做时,我的“活动”页面在我的 Wordpress-Buddypress 网站上停止工作。
我使用 Firefox 上的“firebug”应用程序来尝试找出问题所在。
我得到了三个错误。
jQuery.timeago 未定义
并且...
jQuery("span.timeago").timeago 不是一个函数
并且...
$("ul.sf-menu").superfish 不是一个函数
看起来灯箱是导致这些东西停止工作?有什么想法吗?谢谢。
I installed lightbox on my website. When I did, my "activity" page stopped working on my Wordpress-Buddypress website.
I used the "firebug" app on Firefox to try and pinpoint the problem.
I got three errors.
jQuery.timeago is undefined
and....
jQuery("span.timeago").timeago is not a function
and...
$("ul.sf-menu").superfish is not a function
It seems like the lightbox is causing these things to stop working? Any ideas? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试查看您的页面源代码并点击脚本链接。 a)、脚本被错误包含,或者 b)、您包含了 jQuery 2 次,并覆盖了之前绑定的绑定。扩展,就是这样。
基本上这些错误的意思是 jQuery 没有被正确告知如何实现这些功能。
Try viewing your page source and following the links to your scripts. Either a), the scripts are incorrectly included, or b), you're including jQuery 2 times, and overwriting the bindings you previously bound to. Extended, that is.
Basically what the errors mean is that jQuery was not properly told how to implement those functions.