0
我有這個調用ajax,要成功我打印另一個按鈕,從PHP它有另一個調用ajax。 .on之後,如何在不插入整個調用ajax的情況下使用方法?.on調用方法ajax
AJAX
$('.send_request').click(function(){ // send request ajax
var id_user_receive = $(this).attr('id');
var button = $(this);
$.ajax({
url: CI_ROOT + 'friendship_ctr/send_request',
type: "POST",
data: "id_user_receive=" + id_user_receive,
dataType: "html",
success: function(html) {
$('.button-option').html(html);
$('.remove_u').on('click',function(){
$('.remove_u').click(function(){ // i would like short this code
var id_user_receive = $(this).attr('id');
$.ajax({
url: CI_ROOT + 'friendship_ctr/remove_friend',
type: "POST",
data: "id_user_receive=" + id_user_receive,
dataType: "html",
success: function(html) {
},
error: function(status) {
alert(status);
}
});
});
},
error: function(status) {
alert(status);
}
});
});
});
非常感謝!我現在明白了。謝謝! – fabrizio
很高興幫助你的人,你可以請求答案嗎?希望這可以幫助別人尋找同樣的問題 – sandino