我有一段jQuery代码通过POST查询页面,然后该页面返回一些显示在页面上的文本.这是我用来成功执行此操作的代码:
$.post(
"query.PHP?module=Vote",
{answer: ans, pid: pid, to: to, page: page},
function(responseText){
$("#poll").html(responseText);
},
"html"
);
我已经尝试将$(“#poll”).html(responseText)更改为$(“#poll”).html(responseText).fadeIn(1500);但它不起作用.
解决方法:
为了淡入,元素必须首先淡出.尝试立即淡出(0秒),然后使用回调函数添加内容并淡入.
$.post(
"query.PHP?module=Vote",
{answer: ans, pid: pid, to: to, page: page},
function(responseText){
$("#poll").fadeOut(0,function(){
$(this).html(responseText).fadeIn();
});
},
"html"
);