我的 jQuery 代码是:
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
成为fadeIn或slideDown效果,当我使用这两个jQuery函数中的任何一个时,它既不会fadeIn也不会slideDown。
我正在尝试这个;
$('#show_profile_comments').fadeIn("slow").html(response);
但它不起作用,并且该消息被发布而没有任何效果。代码有问题吗?
请帮忙!