我的文档中有一些包含图像 ID 的元素,我想用图像替换这些 ID:
$(".image_id_field").each(function() {
img_id = $(this).html();
$.post("ajax/get_image.php", { id: img_id }, function( response) {
// data = "<img src='path_to_image.png' />"
// How is it possible, to get the current $(this) in here to append the response
});
)
我有两个想法:
1.是否可以从success函数中的post参数中获取给定的id来识别元素?
2. 是否可以让 $post 异步并在触发 post 请求后使用响应?