Is there a way to add error checking to a stylesheet background image loader in Javascript?
I'm using a background image in a di开发者_如何学JAVAv and want to have the div behave differently depending on whether the image loads or not.
So, rather than doing img.onerror | img.onload I want to do style.backgroundImage.onerror or something along those lines
this isn't possible, is it?
I don't think it is, but could you have an IMG tag loading the same image somewhere hidden on the page? If that one doesn't load, you can assume the background image hasn't loaded.
精彩评论