js拼裝html無法觸發事件
阿新 • • 發佈:2019-02-12
$("body").delegate('.refund','click',function(){//主要是這裡
var truthBeTold = confirm("退款稽核,稽核結果會在24小時內,通過微信公眾號渠道傳送,請注意查收!");
balance_rule_id = $(this).data('id');
this_refund = $(this);
if (truthBeTold) {
$.post("{:url('')}",{balance_record_id:$(this ).data('id')},function(result){
console.log();
if(result == 1){
$("#status"+balance_rule_id).text("退款稽核");
this_refund.remove();
alert("發起稽核成功!");
}else if(result == -2 ){
alert("正在稽核...");
}else if(result == -1){
alert("發起稽核失敗!");
}else{
alert("網路異常");
}
});
}
});