Jquery隐藏回调函数在firefox中不起作用

时间:2015-12-10 10:28:59

标签: javascript jquery firefox callback

我在编码中使用过这个函数,但回调函数不起作用。

var supplier_code = $("#supplier_code").val();
$('#copy_item-table tr').not('.'+supplier_code).hide("fast", function(){
    var count = $('#copy_item-table tbody tr:visible').length;
    if(count == 0){
       $('.copy-potable-header').hide();
       $('.copy-item-error').show();
    }else{
       $('.copy-item-error').hide();
       $('.copy-potable-header').show();
    }
});

1 个答案:

答案 0 :(得分:0)

使用fadeOut()代替hide()