Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
601 views
in Technique[技术] by (71.8m points)

jquery - When does document.ready actually fire?

Let's consider the following case:

There is a 2.5MB image in an <img> tag and I'm on a slow connection which takes considerable time to download that image. If I'm putting the document.ready() in the head tag, then will it wait for the image to be downloaded or it will fire when all the HTML is downloaded?

In case it fires when all the HTML is downloaded, how do I avoid it?

How do I make the .ready() function fire after the 2.5MB data transfer?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
$(document).ready(...)

Fire when the DOM is loaded (even if multimedia no loaded yet)

$(window).load(...)

Fire when all the content is loaded (when the progress indicator which shows the loading process is gone)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...