我正在寻找一个带有 jquery 的向下滑动动画(这些天在很多表单上都很流行)。我将文本注入到 div 中。文本是从数据库中获取的。
success: function(text, textS, xhr){
if(xhr.status){
if (text == "") {
$("#resultsDiv").html(" ");
}
else {
$("#resultsDiv").html(text.replace(/\+/g,"<br/>"));
}
}
},
你认为在这个过程中实现动画的最佳方式是什么?