我在编码中使用过这个函数,但回调函数不起作用。
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();
}
});
答案 0 :(得分:0)
使用fadeOut()
代替hide()