html5_延迟(defer)脚本与异步(async)脚本

延迟脚本:

诸如以下的html文档:

Doctype html>
<html>
    <head>
        <title>延迟脚本title>
        <script src="defer.js">script>
    head>
    <body>
        <div id="target">div>
    body>
html>

 

其中包含的javascript代码为:

var tg=docuemnt.getElementById("target");
tg.innerHTML="XX";
tg.style.backgroundColor="gery";

 

以前的浏览器对文档进行解析时,当解析到

你可能感兴趣的:(html5_延迟(defer)脚本与异步(async)脚本)