我jQuery代碼是:jQuery的淡入()或了slideDown()
jQuery(document).ready(function ($) {
$("#comment_submit").on('click', function() {
var message = $("#pc_message").val();
var uid = $("#uid").val();
var from_uid = $("#from_uid").val();
if (message == '') {
alert("Message is missing!!");
return;
}
$.ajax({
type: "post",
dataType: "html",
url: "pro_profile.php?action=do_comment",
data: "message=" + message + "&uid=" + uid + "&from_uid=" + from_uid,
success: function (response) {
$('#show_profile_comments').html(response);
document.getElementById('pc_message').value = '';
document.getElementById('pc_message').focus();
},
error: function (response) {
alert(response.responseText);
}
});
return false;
});
});
我想#show_profile_comments
是淡入或影響了slideDown,當我使用以下兩種jQuery函數不淡入沒有了slideDown。
我在試試這個;
$('#show_profile_comments').fadeIn("slow").html(response);
但它不起作用,郵件發佈沒有任何影響。代碼中有錯嗎?
請幫忙!
謝謝,這工作.. – user2854563