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
280 views
in Technique[技术] by (71.8m points)

javascript - $(window).load() in IE?

Recently I ran into a mysterious problem that IE (6-8) is keeping throwing me an error. I don't know if this is the problem, but I think it is.

Open up the F12 developer tools in a jQuery included website, enter

$(window).load(function(){
     alert("Wont able to see me");
});

And an error will popup:

"Unable to get value of the property 'slice': object is null or undefined"

Did I do anything wrong, or anything else???

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

I recently found a work-around for IE not recognizing $(window).load()...

window.onload = function() {
    alert("See me, hear me, touch me!");
};

This is a little different than $(function(){}) as it executes after all elements are loaded as opposed to when the DOM is ready.

I recently implemented this in another project and it worked wonderfully.


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

...