本文介绍了为什么jQuery会抛出错误"fadeOut不是函数"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jQuery并将此代码放在我的javascript中:

I am using jQuery and put this code in my javascript:

function HideMe(itemID) {
    var myDiv = 'item_' + itemID;
    $(myDiv).fadeOut("slow");
}

但是它给了我这个错误: fadeOut不是一个函数.

But its giving me this error: fadeOut is not a function.

推荐答案

该页面上是否还有另一个JavaScript库?似乎您具有hide函数,并且已定义$(例如,原型也具有hide函数).
如果是这种情况,请尝试:

Do you have another javascript library on that page? It seems you have the hide function, and the $ defined (prototype, for example, also has an hide function).
If that is the case, try:

jQuery("#item_0").fadeOut("slow");

这篇关于为什么jQuery会抛出错误"fadeOut不是函数"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-06 17:25