javascript – jQuery:使用fadeIn()和.html()

我有一段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"  
);

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...