最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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???

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???

Share Improve this question edited Mar 10, 2012 at 23:25 Derek 朕會功夫 asked Mar 10, 2012 at 23:15 Derek 朕會功夫Derek 朕會功夫 94.5k45 gold badges198 silver badges253 bronze badges 1
  • I don't get that error. But that load handler does not execute since the 'load' event already occurred (unless you somehow manage to execute that code from the console while the page is still loading). – Šime Vidas Commented Mar 10, 2012 at 23:22
Add a ment  | 

3 Answers 3

Reset to default 8

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.

For anyone still running into this, IE11 (only one I tested) does not fire the the load event if the listener is inside of the jquery ready function. So pull the load function outside of the ready function and it will fire in IE11.

//this is bad
$(() => { //jquery ready
    window.onload = () => { //wont fire in IE
        cosole.log('window loaded'); 
    }
});

//this is good
$(() => { //jquery ready
    cosole.log('dom ready'); 
});

window.onload = () => { //will fire in IE
    cosole.log('window loaded'); 
}

The latest jQuery (1.7.1) with IE10 and IE9 does not produce such an error for me.

As a side note; If you wish to execute something when the dom is ready; Try this way;

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

I believe this is the standard convention for attaching a function to domready event.

Reference: jQuery Documentation

发布评论

评论列表(0)

  1. 暂无评论