javascript image onError 如果非 200 响应

发布于 2024-11-10 12:28:44 字数 348 浏览 4 评论 0原文

我必须计算图像加载时间。 onLoadHandler 负责它。

<img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1'   src='http://exmaple.com/02.jpg'/>

如果图像是具有 200 服务器响应的普通文件,则工作正常。

但合作伙伴提供了 302 重定向链,并且 onError 在第一次重定向时触发。 所以我从来没有得到真正的加载图像时间。

有一些解决方法吗?

谢谢

I have to count image loading time. onLoadHandler is responsible for it.

<img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1'   src='http://exmaple.com/02.jpg'/>

It is works fine if image is normal file with 200 server response.

But partners provide chain of 302 redirects, and onError fires on first redirect.
So i never get real loading image time.

Is there some workaround?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2024-11-17 12:28:45

您重定向到的图像的大小与您请求的图像的大小相同吗?如果没有,您可以使用它来检测错误。

Is the size of the image that you're redirected to the same size as the image you requested? If not, you can use this to detect an error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文