我有 jquery 代码,可以找到 div 中所有图像的“src”属性(每个图像都有相同的类:.image_class),然后将其发送到 ajax(然后发送到找到该图像并删除它们的 php 文件)。这是代码:
$remove_images = $.each($("#main_div").find(".image_class").attr(""));
$.ajax({
type: 'POST',
data: {
action: 'delete_images',
imagefile: $remove_images
},
url: 'delete.php',
success: function(msg) {
alert("" + msg + "");
}
})
PHP 文件如下所示:
if($_POST["action"]=="delete_images"){
@unlink($_POST['imagefile']);
}
但这不起作用。我怀疑 $remove_images 有问题(可以说“$.each 不好)。