所有, 我有一些鏈接,得到顯示,如果一個人喜歡它的人可以點擊該鏈接後,無法正常工作,然後我基本上這樣它刪除鏈接它分配給另一個DIV可以刪除。下面是.POSTjQuery的.append功能
jQuery.post("save_song.php", { song_id: song_id, love_like_hate: "love" },
function(response) {
if(response.responseText1=="too_many"){
alert(response.responseText2);
}else if(response.responseText1=="already_selected"){
alert(response.responseText2);
}else{
alert(response.responseText2);
jQuery("#div_song_id_"+song_id).html(response.responseText1);
jQuery("#love_it").append(response.responseText2);
jQuery("#current_count_love").html(response.responseText3);
if(response.responseText4=="remove_initial"){
jQuery("#love_none").hide();
}
}
}, "json");
這裏的代碼發送回頁面save_song.php頁:
echo json_encode(array(
'responseText1' => 'Youve added '.$artist_name.' - '.$track_name.' to your '.$love_like_hate.' list!',
'responseText2' => '<div id="div_added_song_id_'.$song_id.'" style="padding:0 0 0 10px; "><span style="display:inline-block; width:200px;">'.$artist_name.'</span><span style="display:inline-block; width:400px;">'.$track_name.'</span><span style="display:inline-block; width:100px;">'.$track_time.'</span><span style="display:inline-block; width:100px;"><a href="#" class="remove_song" id="delete_'.$song_id.'">Remove</a></span></div>',
'responseText3' => $resultrowschecktotal
));
我的問題是,當response.responseText2追加到我的DIV jquery的.remove_song不起作用,它基本上只是使用鏈接,並試圖做#。下面是remove_song代碼:
jQuery(".remove_song").click(function(){
event.preventDefault();
song_id = jQuery(this).attr("id");
song_id = song_id.split("_");
song_id = song_id[1];
var answer = confirm("Do you want to remove this song?")
if (answer){
jQuery.post("delete_song.php", { song_id: song_id },
function(response) {
jQuery("#div_added_song_id_"+song_id).hide();
jQuery("#current_count_"+response.responseText2).html(response.responseText1);
}, "json");
}
});
如何我還可以利用這個爲新追加的鏈接,因爲當DOM完成他們不是裝的?
'.live'在V1.7 +被貶值。建議用戶'$(文件)。在(「點擊」,「.remove_song」,函數(){'。只是爲了幫助答案進一步。 – kwelch
感謝注意到 –