次のAJAXリクエストを使用しています...
$('.act').live('click', function(){
$.ajax({
type: "POST",
async : false,
url: req_url,
data : {
id : account_id
},
success : function(data) {
if(data == 'banned'){
$(this).closest('tr').addClass('danger');
alert('updated');
}
else{
alert(data);
}
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest + " : " + textStatus + " : " + errorThrown);
}
});
});
しかし、それは tr on の成功に危険クラスを追加するものではありません。解決するのを手伝ってください、ありがとう。