这是网站: 在此处输入链接描述
现在这是功能:
$("a.wtf").click(function(){
//get the id
the_id = $(this).attr('id');
// show the spinner
$(this).parent().html("<img src='images/thanks.fw.png'/>");
//the main ajax request
$.ajax({
type: "POST",
data: "action=wtf&id="+$(this).attr("id"),
url: "votes.php",
success: function(msg)
{
$("span#votes_count"+the_id).fadeOut();
$("span#votes_count"+the_id).html(msg);
$("span#votes_count"+the_id).fadeIn();
$("span#vote_buttons"+the_id).remove();
}
});
});
这是其余的:
<a href='javascript:;' class='wtf' id='".$list['id']."'>
改写:现在,它在用户投票“WTF”后显示图像。如何用显示 WTF 投票的新值的新文本替换 Vote 链接(可能是查询的结果)