我通过dropzone.js&上传了多张图片。我想删除一些图像,然后删除它在客户端,但它不从数据库中删除。我写了下面的代码。
jQuery(document).ready(function(){ alert("ssss");
jQuery(".dz-remove").on("click", function (event) {
var edit_field = this;
var _mainimagename = jQuery(this).parent().find('.dz-image').find('img').attr('alt');
var _product_id_imp = jQuery("input[name='product_ids']").val();
$.ajax({
type: "GET",
url: "drag-dropdelete.php",
data: {row_id : _mainimagename,p_id : _product_id_imp},
success: function (data) {
if (data) {
alert(data);
//window.location.reload();
}
}
});
});
}); `