我有这段重复的代码。
<div class='commentfloatleft'>
<button type='button' class='button2' onclick='upvote($id8)'>
<img src='images/likebutton.png' class='upvoteimage' width='12' height='12' alt='PearlSquirrel'/>
</button>
<button type='button' class='button2' onclick='downvote($id8)'>
<img src='images/unlikebutton.png' width='12' height='12' alt='PearlSquirrel'/>
</button>
</div>
当我单击 onclick 代码进行投票时是这样的:
function upvote(box){
$(this).siblings('.upvoteimage').load('upvote.php?box=' + box);
}
我已经尽一切努力让它发挥作用。get 函数正在工作,但我看不到“.upvoteimage”中的任何变化。有谁知道如何解决这个问题。帮助将不胜感激。谢谢。