Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Error loading images - what could be the reason?

  • 2 trả lời
  • 7 gặp vấn đề này
  • 12 lượt xem
  • Trả lời mới nhất được viết bởi 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?

Được chỉnh sửa bởi navteq vào

Tất cả các câu trả lời (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.

Được chỉnh sửa bởi jcadong5 vào