Test if jquery is loaded not using the document ready event

后端 未结 6 1112
北海茫月
北海茫月 2020-12-19 05:28

On my site I have a jquery function which retrieves data from another (secured) server as soon as the page is loaded. Using a jsonp call I currently load this data after doc

6条回答
  •  暖寄归人
    2020-12-19 06:15

    What I don't like about the above call, is that the jsonp can actually be exectued before the document ready event

    are you sure about that?! please note you may still have images loading..etc
    I guess you need to use:

    $(window).load(function() {
        $.getJSON(_secureHost + '/base/members/current.aspx?callback=?', function (data) {
            initPage(data);
        });
    });  
    

    Link

提交回复
热议问题