我收到此错误:
未捕获TypeError:对象[object Object]没有方法'fadeout'
这是我的代码:
// Fade out the Silhouette and fade in the picture
// when the <h3> Who am I text is clicked
$('div#mysteryPanel > h3').click(function(){
$('#silhouette').fadeout(5000);
});
当点击<h3>
标签中的文字时,图像被认为淡出,而另一个图像被认为在延迟后淡入。有人可以向我解释我的错误,以便我可以解决这个错误吗?
这是课程作业的一部分,因此首选的解释是我做错了。
答案 0 :(得分:8)
这是区分大小写的。你想要的功能是.fadeOut()
答案 1 :(得分:1)
您正在使用不正确的jquery命令。 它是“fadeOut”而不是“fadeout”