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

html - Javascript: Have body onload function wait until scripts have completed - Stack Overflow

programmeradmin1浏览0评论

I have some functions that I am calling and they take some time (milliseconds), but I don't want the page to display until these functions have pleted. Right now, I can tell that the page loads and then the scripts eventually plete.

Right now, I am calling the functions in the body onload.

Also, another issue I may have is that I need to access div elements in the html content, can I do that in my body onload function (getElementById('somDiv')?

Here is the workflow.

  1. Make a call to getElementById('someDiv') to get an element from the page.

  2. Invoke the function someFunc, this function is in the body onload=someFunc()

  3. Wait until someFunc is finished

  4. Display page to user once my function has pleted.

I have some functions that I am calling and they take some time (milliseconds), but I don't want the page to display until these functions have pleted. Right now, I can tell that the page loads and then the scripts eventually plete.

Right now, I am calling the functions in the body onload.

Also, another issue I may have is that I need to access div elements in the html content, can I do that in my body onload function (getElementById('somDiv')?

Here is the workflow.

  1. Make a call to getElementById('someDiv') to get an element from the page.

  2. Invoke the function someFunc, this function is in the body onload=someFunc()

  3. Wait until someFunc is finished

  4. Display page to user once my function has pleted.

Share Improve this question edited Jun 4, 2009 at 17:57 Berlin Brown asked Jun 4, 2009 at 17:24 Berlin BrownBerlin Brown 11.8k38 gold badges140 silver badges212 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

What you could do is keep your page content in a div that is initially styled with display:none. Then when your javascript code finishes, update the style on the div to display:block, e.g.:

<html>
    <head>
        ...
        <style type="text/css">
            html, body, #body {
                height: 100%;
                width: 100%;
                padding: 0;
                margin: 0;
            }
            #body {
                display: none;
            }
        </style>
        <script type="text/javascript">
            function myFunc() {
                ...
                getElementById('body').style.display = 'block';
            }
        </script>
    </head>
    <body onload="myFunc();">
        <div id="body>
            ...
        </div>
    </body>
</html>

Then Bob's your uncle: the page looks like it has delayed loading until after your script is finished.

Functions that are called in the <body> tag's onLoad event are only fired when the DOM is loaded (however it does not wait for external dependencies such as JavaScript files and CSS to load), so you can be sure that when your someFunc() function is called, (if attached to the <body> tag's onLoad event) the elements in the page have been loaded. If you want to access a DIV that is loaded in the page then you can be sure that it will have loaded when your someFunc() function is called.

To solve your problem you could wrap then content of your page in a DIV, with the display of it set initially to none. Then when the page has loaded, your someFunc() function is called. When it has finished executing, you can set the display of your wrapper DIV to block, so that it is visible to the user.

However, make sure that you make the user aware that the page is loading, and you do not simply show them a blank screen whilst your JavaScript is loading.

The body's onLoad function is triggered when the DOM has pleted loading - which implies that all HTML elements have been fully loaded. So your onload function itself should assume that everything is loaded and ready to go, since its very execution is under those guidelines.

发布评论

评论列表(0)

  1. 暂无评论