我有js错误,说对象[object Object]没有方法'倒计时'

时间:2012-08-12 21:55:37

标签: javascript

我的网站在IE以外的所有浏览器中都运行良好。当我看到控制台时,它说:

Object [object Object] has no method 'countdown'

网站名称为:http://www.rivalhost.com/

问题在于菜单。请帮帮我这些家伙。提前致谢

2 个答案:

答案 0 :(得分:1)

您的问题出在home-slider.js

的第6行
$('#countdown').countdown({until: newYear});

没有ID为“倒计时”的元素,因此$('#countdown')找不到任何内容

编辑:此外,您似乎没有在网站中添加“jQuery Countdown”插件,因此.countdown()方法不存在。

答案 1 :(得分:0)

根据控制台,DOM中没有id为countdown的元素。也许你拼错了吗?

document.getElementById("countdown");
null