HTML页面加载

时间:2015-09-02 13:31:40

标签: javascript html

我需要以下内容:

我有一个html页面,它在body标签内声明了几个javascripts。但是,我必须在加载所有这些组件并呈现页面之前进行异步处理,然后继续该过程。关于如何解决这个问题的任何提示?

谢谢。

我的代码结构:

<html>
    <script>
        function loadFromServer() {
           //this operation is async, and I need to`enter code here` process this   before load  
           //the scripts declareds in body.
         }
     </script>
     <body>
         //content
         //js loads
     </body>
</html>

1 个答案:

答案 0 :(得分:0)

您是否尝试将脚本声明放在正文标记之后?

<body>
   ...
</body>

<!-- script declarations here -->
<script src=""></script>
<script src=""></script>
<script src=""></script>