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

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...