我有這樣的jQuery代碼工作正常,但在最後的影像是不會改變到我這裏指定的SRC:更改jquery中的圖像?
的jQuery:
$(document).ready(function() {
$("a.vote_up").click(function(){
//get the id
var the_id = $(this).attr('id');
//the main ajax request
$.ajax({
type: "POST",
data: "action=vote_up&id=" + the_id,
url: "ajax/votes.php",
success: function(msg) {
$("span.vote_count#"+the_id).html(msg).fadeIn();
// my problem is here
$(".vote_up#" + the_id + " img").attr("src", "img/upvoteActive.png");
}
});
});
});
html代碼:
<a href='#' class='vote_up' id="$id"><img src="img/uparrow.png" /></a>
雖然這仍然deosnt工作! :((對不起 – getaway 2010-10-05 19:01:23
+1;只是因爲它不適用於你,所以沒有必要投票,因爲答案仍然是一個好的點 – Mottie 2010-10-05 19:06:24
但它不相關,他應該使用評論系統,它不是一個答案,它的建議!!! – getaway 2010-10-05 19:07:17