1、/api/swfupload/handlers_editor.js
将function Del_IMG(o) {
if(confirm('确定要移除此图片吗?')){ o.style.display = 'none';
return false;
}
替换为:
function Del_IMG(o) {
if(confirm('确定要移除此图片吗?')){ o.style.display = 'none';
o.src = DTPath+'api/delupload.php?daction=delaction&img_link='+o.src;
}
return false;
}
2、/api/delupload.php 【新建一个接口文件】
里面的代码如下:
【code】
$daction = isset($_GET['daction']) ? htmlspecialchars($_GET['daction']) :'';//操作方式
$img_links = isset($_GET['img_link']) ? htmlspecialchars($_GET['img_link']) :'';//传递图片上传后的地址
if(!empty($daction) && $daction == 'delaction'){
$file_dir = "D:/wwwroot/imgdcpfb/wwwroot/file/";
$arrs = explode('/file/',$img_links);
if(!empty($arrs)){
$file_name = $file_dir.$arrs[1];
if(file_exists($file_name)){
if(@unlink($file_name)){
return true;
}else{
return false;
}
}
}
}
【/code】