我怎样才能删除src而不是我尝试过像
这样的整个图像$(this).parent().find('img').not(this).remove();
但它无法正常删除图像然后当我再次尝试上传时它无法上传,因为它无法找到图像
答案 0 :(得分:0)
要删除src属性,请将其设置为null
$(this).parent().find('img').not(this).attr(src, null);
或者你可以使用jquery .removeAttr()
mehtod:
$(this).parent().find('img').not(this).removeAttr(src);
答案 1 :(得分:0)
$(this).parent().find('img').not(this).attr("src","");
答案 2 :(得分:-1)