我在 Jquery 中动态创建图像并尝试向其添加控件当用户单击图像时,我想弹出带有图像 ID 的 alert()。但我无法成功在警报框中显示图像的 ID。请帮我在警报框中显示图像的 ID。
这是显示警报框的代码
function category_follow(search_txt) {
alert(this.Attr('name'));
}
这是我动态创建图像的代码
$.ajax({
url: 'HoverCard_WebService.aspx?q=' + encodeURIComponent(span_text),
type: 'GET',
dataType: 'json',
beforeSend: function () {
$(".hovercard").prepend('<p class="loading-text">Yükleniyor...</p>');
},
success: function (data) {
$(".hovercard").empty();
$.each(data, function (index, value) {
var search_txt = 'TestArif4';
result += '<div><button class=\'takibe_al\' name=\'test_name\' id=\'btn_test_id\' onClick=category_follow(\'' + value.id + '\')><img id=\'img_category_follow\' src=\'images/hover_card_plus_icon.png\' class=\'hover_cursor_hand\' /></button></div>';
});
},