Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Error loading images - what could be the reason?

  • 2 답장
  • 7 이 문제를 만남
  • 12 보기
  • 최종 답변자: jcadong5

more options

How can we make firefox log all messages to a log file?

We have a fairly complex javascript application that loads multiple images sequentially from a server and sprites those through a viewport so as to play like a video. In this app, we use javascript to set the "src" attribute on a single tag which causes the browser to fetch the image. Once the job of showing that image is done, we again set the src attribute to a different image and so on. The actual spriting of the image is done on the "load" event for that image tag. This img tag is appended to a dom element with appendChild javascript method at the time it is first created. The problem is that firefox sometimes fails to load images without any exception or evident errors. There are no exceptions on the server side. When we get these errors, we again set the src attribute on the img tag and expect firefox to continue fetching the image. But often times the error persists. Question is: how do we i make firefox log out error messages so that we can get down to the root cause of the problem and fix it?

How can we make firefox log all messages to a log file? We have a fairly complex javascript application that loads multiple images sequentially from a server and sprites those through a viewport so as to play like a video. In this app, we use javascript to set the "src" attribute on a single <img/> tag which causes the browser to fetch the image. Once the job of showing that image is done, we again set the src attribute to a different image and so on. The actual spriting of the image is done on the "load" event for that image tag. This img tag is appended to a dom element with appendChild javascript method at the time it is first created. The problem is that firefox sometimes fails to load images without any exception or evident errors. There are no exceptions on the server side. When we get these errors, we again set the src attribute on the img tag and expect firefox to continue fetching the image. But often times the error persists. Question is: how do we i make firefox log out error messages so that we can get down to the root cause of the problem and fix it?

글쓴이 navteq 수정일시

모든 댓글 (2)

more options

A similar thing is happening to me, after I upgraded from firefox 3.x to firefox 4. This doesnt happen in IE.

What is happening is: 1. if i put path to an img, like '.src='/abc/aaa.jpg', it is okay 2. if i put a path to a server request like '/abc/myJavaStrutsActionToGetImage.do', it doesnt work. No image is displayed.

more options

I found a workaround.

First, load them all into 'invisible' 'divs'.

Then, 1 by 1, make the current image visible, and the rest invisible.

===============================
      
      
      
===============================

Use javascript Timeout, to do, every time interval:

for (var i = 1; i <= 3; i++) {

  document.getElementById('myImageBox'+i).style.visibility = 'hidden'; 

}

 	  	  document.getElementById('myImageBox'+currentImageShown).style.visibility = 'visible';
     
===============================

currentImageShown is your current frame for that timeout time interval

===============================

Please look at attached image because the codes i posted are not getting displayed here.

글쓴이 jcadong5 수정일시