我有一段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"
);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。