网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 JS把内容动态插入到DIV的实现方法
内容
    下面小编就为大家带来一篇JS把内容动态插入到DIV的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
     <meta http-equiv="content-type" content="text/html; charset=utf-8" />
     <title>Testing</title>
    </head>
    <script type="text/javascript" src="example.js">
    </script>
    <body>
    <div id="testdiv">
    </div>
    </body>
    </html>
    example.js 文件内容:
    window.onload = function() {
     var testdiv = document.getElementById("testdiv");
     testdiv.innerHTML="<p>I inserted <em>this</em> content.</p>";
    }
    另一段代码:
    window.onload = function() {
     var para = document.createElement("p");
     var txt1 = document.createTextNode("I inserted ");
     var emphasis = document.createElement("em");
     var txt2 = document.createTextNode("this");
     var txt3 = document.createTextNode(" content.");
     para.appendChild(txt1);
     emphasis.appendChild(txt2);
     para.appendChild(emphasis);
     para.appendChild(txt3);
     var testdiv = document.getElementById("testdiv");
     testdiv.appendChild(para);
    }
    这与在DIV内动态载入另一个页面非常相似!
    以上这篇JS把内容动态插入到DIV的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/14 0:48:26