zoukankan      html  css  js  c++  java
  • html文档加载顺序简单理解

    html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script src="outUp1.js"></script>
        <script>
            alert("body上面的js!");
            document.getElementsByTagName("div")[0].style.cssText = "background-color:red";
        </script>
        <script src="outUp2.js"></script>
        <!--html文档按照从上往下的顺序加载,他没有找到div这个标签名,所以样式没有被修改
        想要让上面引入的js文件在文档加载完成之后执行的话就需要用window.onload函数,
        这样才不会出错。-->
    </head>
    <body>
    <div color="green">初始测试div</div>
    </body>
    <script src="outUp3.js"></script>
    <script>
        alert("body下面的js!");
    </script>
    <script src="outUp4.js"></script>
    </html>

    outUp1.js

    alert("body上面的外部资源js1!");
    document.getElementsByTagName("div")[0].style.cssText = "background-color:aqua;";

    outUp2.js

    alert("body上面的外部资源js2!");
    document.getElementsByTagName("div")[0].style.cssText = "color:black;";

    outDown1.js

    alert("body下面的外部资源js3!");
    document.getElementsByTagName("div")[0].style.cssText = "background-color:blue;";

    outDown2.js

    alert("body下面的外部资源js4!");
    document.getElementsByTagName("div")[0].style.cssText = "color:red;";
  • 相关阅读:
    Neo4j
    linux系统中如何建立与删除软连接(方便快捷使用,大量节约时间)
    eclipse/myeclipse 中,如何删除已经下载过的插件(举例:删除scala ide)
    dayday up
    元类
    sort和sorted
    反射
    继承派生
    property
    python3.5和3.6区别
  • 原文地址:https://www.cnblogs.com/foreverlin/p/10093883.html
Copyright © 2011-2022 走看看