gpt4 book ai didi

php - 使用 ajax 删除使用 glob() 显示的图像

转载 作者:行者123 更新时间:2023-11-29 18:04:24 25 4
gpt4 key购买 nike

我如何为 div.pix-box 提供增量特定 id,例如 pix-1 、 pix-2 、...为了用ajax删除它们?

$images = glob("user/$username/"."*.{jpg,jpeg,gif,png}",GLOB_BRACE);
foreach($images as $image) {
echo '<div class="pix-box"><img src="'.$image.'" />'.'<br>';
echo '<form class="remover" action="admin-delete.php" method="post">';
echo '<input type="hidden" value="'.$image.'" name="delete_file" />';
echo '<input type="submit" name="submit" value="Delete image" />';
echo '</form>';
echo '</div>';
}

这是我的 ajax 脚本:

$(".remover").on('submit',(function(d) {
d.preventDefault();
$.ajax({
url: "admin-delete.php",
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData:false,
success: function(data)
{
$('#pix-....').remove();

},
error: function()
{
}
});

和admin-delete.php:

<?php
if (array_key_exists('delete_file', $_POST)) {
$filename = $_POST['delete_file'];
if (file_exists($filename)) {
unlink($filename);
echo 'File '.$filename.' has been deleted';
} else {
echo 'Could not delete '.$filename.', file does not exist';
}
}
?>

最佳答案

添加增量变量:

$i = 1;

foreach($images as $image) {
...
$i++;
}

现在您可以使用 $i 为您想要的任何 ID 添加唯一的后缀。

关于php - 使用 ajax 删除使用 glob() 显示的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48032416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com