我一直在使用这个函数从 php 文件中加载数据:
$('#form form').submit(function(){
$('#content').empty();
$.get('data.php', $(this).serialize(), function(data){
$('#content').html(data);
});
return false;
});
我想要的是用一些动画来显示数据,比如fadeIn
效果。