Dropzone js /删除图像不起作用

时间:2016-11-22 13:06:44

标签: javascript jquery

我通过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();
                 }
              }
         });
    });
});  `

0 个答案:

没有答案