我有一塊jQuery代碼,通過POST查詢頁面,然後該頁面返回一些文本顯示在頁面上。這是我使用的成功做到這一點的代碼:我試圖改變$("#poll").html(responseText)
到$("#poll").html(responseText).fadeIn(1500);
jQuery:使用fadeIn()與.html()
$.post(
"query.php?module=vote",
{answer: ans, pid: pid, to: to, page: page},
function(responseText){
$("#poll").html(responseText);
},
"html"
);
,但它不工作。
我必須做什麼/更改以使文本淡入頁面?
請創建一個小提琴。它有很多幫助。 – Diode 2012-01-14 08:39:42