1

我正在使用以下代码过滤表中的数据并loader在执行此操作时显示带有 id 的图像。

我的问题是它没有隐藏,我不知道我做错了什么。

我尝试在隐藏之前添加警报,它确实显示了警报,但在显示图像时它无法正常工作。我究竟做错了什么?inputFilter是过滤器的输入data_fm_op名称,是表的名称。

JavaScript

$('#inputFilter').change(function () {
$('#loader').show();
var that = this;
$('tbody tr').each(function () {
    if ($(this).text().indexOf($(that).val()) == -1) {
        $('#data_fm_op').animate({
            marginTop: 0
        }, 50, function () {
            $(this).find('tbody tr').eq(i).hide();
        });
    } else {
        $('#data_fm_op').animate({
            marginTop: 0
        }, 50, function () {
            $(this).find('tbody tr').eq(i).show();
        });
    }
});
$('#loader').hide();

});

这是 jsFiddle:http: //jsfiddle.net/m6hLR/

4

3 回答 3

1

您可以等待动画回调,如果当前索引等于 tr 的长度,则隐藏加载器

$('#loader').hide();   
$('#inputFilter').change(function() {
    $('#loader').show();
    var that = this;
    var length=$('tbody tr').length;
    $('tbody tr').each(function(i,n) {
        if ($(this).text().indexOf($(that).val()) == -1) {
            $('#data_fm_op').animate({
                marginTop: 0
            }, 50, function() {
                $(this).hide();
                if(i==length-1){//if it is the last element hide the loader
                     $('#loader').hide();           
                }  
            });
        } else {
            $('#data_fm_op').animate({
                marginTop: 0
            }, 50, function() {
                $(this).show();
                if(i==length-1){//if it is the last element hide the loader
                     $('#loader').hide();           
            }  
       });
      }           
    });
});    

http://jsfiddle.net/m6hLR/10/

于 2013-10-21T16:37:06.317 回答
0

没有带有一些 HTML 的 jsfiddle 很难理解代码的结构,但可以试试这个。

http://jsfiddle.net/MRa8q/3/

$('#inputFilter').change(function() {
        $('#loader').show();
        var that = this;
        $('tbody tr').each(function() {
            if ($(this).text().indexOf($(that).val()) == -1) {
                $('#data_fm_op').animate({
                    marginTop: 0
                }, 50, function() {
                    $(this).hide();
                });
            } else {
                $('#data_fm_op').animate({
                    marginTop: 0
                }, 50, function() {
                    $(this).show();
                });
            }
        });
    $('#loader').hide();
});
于 2013-10-21T15:14:05.680 回答
0

您尚未在图像标签上添加id属性。改变 :

<img src="https://www.vocalware.com/images/ajax_loader.gif" height="19" width="19">

到 :

<img src="https://www.vocalware.com/images/ajax_loader.gif" id="loader" height="19" width="19">

JsFiddle:http: //jsfiddle.net/subins2000/m6hLR/7/

于 2013-10-21T15:17:21.773 回答