早上好,我正在尝试在控制台中接收此链接。
$('.bestehende_edit').click(function(){
console.log($(this));
})
也许我需要使用委托,但我不知道如何。请向我解释为什么会发生这种情况以及我需要做什么?
$.ajax({
method: 'POST',
dataType: 'json',
async: true,
url: "/" + "<?echo $admin_type?>" + "/get_kredit_history",
data: {
id: << ? echo $credit - > id ? >
},
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
success: function(data) {
$('.bestehende').css('display', 'none');
$.each(data, function(key, value) {
$('.kredits_area').append(
'<div class="bestehende_data" id="bestehende_data_' + value.id + '" style="margin-left:10px;">' +
'<div class="bestehende_header"><h3 style="display:inline-block" >Kredit ' + (key + 1) + '</h3>' +
'<a class="btn btn-default bestehende_edit" style="float:right;margin-top:-15px;color:blue;display:inline-block" href="javascript:void(0);"><i class="fa fa-pencil"></i> </a>' +
'<a class="btn btn-default bestehende_delete" style="float:right;margin-top:-15px;color:red;display:inline-block" href="javascript:void(0);"><i class="fa fa-trash-o"></i> </a>' +
'</div>' +