我正在尝试从<img>
元素中删除加载的图像,但清除或删除 src 并没有这样做。该怎么办?
HTML:
<img src='https://www.google.com/images/srpr/logo3w.png'>
查询:
$('img').attr('src', ''); // Clear the src
$('img').removeAttr('src'); // Remove the src
图像仍然...
小提琴:http: //jsfiddle.net/6x9NZ/