0

嗨,我想过滤所有ul li包含跨度的项目,其中包含一个类和一个希望.text()以这种方式隐藏的值:

/* string is something like 'somefilename.png'*/
    $('.qq-upload-file li').filter(function() {
        return $(this).find('.qq-upload-file').text() == string;
    }).fadeout();

但是萤火虫在执行时记录了这个错误:

$(
[Parar en este error]   

$('.qq-upload-file li').filter(function() {

我在这里想念什么?

4

1 回答 1

2

替换.fadeout().fadeOut()- 大小写很重要。

于 2012-06-09T18:28:53.697 回答