Javascript/jQuery HasLoaded 或等效项?
我知道在 jquery 中可以调用 javascript/jquery onload()
/load()
函数,例如图像 (< /代码>)。
但是,如果在 jquery 中,如果我使用 .html(htmlString)
在 dom 加载后插入图像,我如何添加一个侦听器来处理图像 onload 事件?是否有一个属性我可以检查以查看各种图像以及它们是否已加载?
I know in jquery it is possible to call the javascript/jquery onload()
/load()
functions on, for example an image (<img>
).
However, if in jquery if i use .html(htmlString)
to insert an image after the dom has loaded, how can i add a listener to handle the images onload event? Is there a property I can check to see various images and if they have loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加 html 后,您可以将加载事件绑定到包含的图像:
After appending your html, you can bind the load event to the contained images:
检查图像的
complete
属性Check the
complete
property of the image(s)