我希望用jquery有一个向下滑动动画(这些天很流行)。 我有文本注入div。该文本是从数据库中提取的。
success: function(text, textS, xhr){
if(xhr.status){
if (text == "") {
$("#resultsDiv").html(" ");
}
else {
$("#resultsDiv").html(text.replace(/\+/g,"<br/>"));
}
}
},
您认为在此过程中实施动画的最佳方式是什么?
答案 0 :(得分:3)
快速查看in the manual会告诉您该怎么做:
if (text == "") {
$("#resultsDiv").html(" ").slideUp();
} else {
$("#resultsDiv").html(text.replace(/\+/g,"<br/>")).slideDown();
}