使用javascript删除仅限照片的来源

时间:2018-01-22 10:43:17

标签: javascript jquery html

我怎样才能删除src而不是我尝试过像

这样的整个图像
$(this).parent().find('img').not(this).remove();

但它无法正常删除图像然后当我再次尝试上传时它无法上传,因为它无法找到图像

3 个答案:

答案 0 :(得分:0)

要删除src属性,请将其设置为null

$(this).parent().find('img').not(this).attr(src, null);

或者你可以使用jquery .removeAttr() mehtod:

$(this).parent().find('img').not(this).removeAttr(src);

More information here on .removeAttr()

答案 1 :(得分:0)

$(this).parent().find('img').not(this).attr("src","");

答案 2 :(得分:-1)

试试这个

$('#id').removeAttr('src');​

并查看此讨论:Removing image src attribute