gpt4 book ai didi

jquery - 中绑定(bind)图像加载错误

转载 作者:行者123 更新时间:2023-12-01 06:01:30 25 4
gpt4 key购买 nike

Is there a way to bind to the load() event of an image after changing it's src? 2岁了

How to remove future broken image using jquery尚未回复成功

注意:我完全知道如何处理加载失败的图像 - 我可以添加占位符图像,然后在我分配的同一循环中分配 onerror 处理程序实际的src如this DEMO

我试图运行一页图像并处理已经失败的图像(不是最佳的)或者在页面加载之前让 jQuery 绑定(bind)给定选择器中的所有 img.onerror (更好的解决方案)

所以我脑子里想到了ON:

DEMO

$("figure img").on("error",function () {
console.log("error")
$(this).parents(".content-holder").removeClass("p-alt");
$(this).parents("figure").remove();
});

但这不起作用 - 没有删除任何内容,控制台中也没有任何内容。

我研究过naturalWidth,但并非所有浏览器都支持

最佳答案

如何将事件绑定(bind)到当时不存在的元素? $("figure img") 不会选择任何内容,因为页面上尚不存在这些元素。

关于jquery - <head> 中绑定(bind)图像加载错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11071005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com