如何用JS控制html中的IMG标签?若IMG=“”,则不显示图片,否则就显示img.不能使用onerror事件触发

2024-12-02 16:03:52
推荐回答(2个)
回答(1):

HTML:



JS:
var img = document.getElementById('imgid');
if(img.src == "")img.style.display = "none";

回答(2):

$("img").each(function () { if ($.trim($(this).attr("src")) == "") { $(this).attr("display", "none"); } });