如果找不到源图像,我需要在表格的单元格中显示替代图像。目前下面的代码用于这样做。
cell.innerHTML="<img height=40 width=40 src='<%=request.getContextPath()%>/writeImage.htm' onError='ImgErrorVideo(this);'>"
function ImgErrorVideo(source){
source.src = "video.png";
source.onerror = "";
return true;
}
现在的问题是上述解决方案在 Internet Explorer 中有效,但在 mozilla 中无效。
请告诉我一些适用于所有浏览器的解决方案。