码迷,mamicode.com
首页 > Web开发 > 详细

网页加载完成后再执行代码

时间:2018-07-15 11:01:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:Plan   plane   func   script   alert   var   bsp   charset   net   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Planets</title>
    <script>
        //网页加载完成后再执行代码
        function init (){
            var planet = document.getElementById("greenplanet");
            planet.innerHTML = "Red alert: hit by phase fire!";
        }
        window.onload = init;

    </script>
</head>
<body>
    <h1>Green Planet</h1>
    <p id="greenplanet">All is well</p>
    <h1>Red planet</h1>
    <p id="redplanet">Nothing to report</p>
    <h1>Blue planet</h1>
    <p id="blueplanet">All system A-OK</p>
</body>
</html>

 

网页加载完成后再执行代码

标签:Plan   plane   func   script   alert   var   bsp   charset   net   

原文地址:https://www.cnblogs.com/themost/p/9311916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!