zoukankan      html  css  js  c++  java
  • 添加新句子

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    <p>请自己定义并获取要求的内容</p>
    
    <div id="div1">获取我并显示我的文字内容
        <div>中间的内容</div>
    </div>
    <div>
        <div id="div22" >获取这个div,并添加一个新的div到后面</div>
    </div>
    <div>
        <div id="div33" >获取这个div,并用一个新的div将它替换</div>
    </div>
    <div>
        <div id="div44" >获取这个div,并在它之前添加一个新的div</div>
    </div>
    <button onclick="test1()">第一个</button>
    <button onclick="test2()">第二个</button>
    <button onclick="test3()">第三个</button>
    <button onclick="test4()">第四个</button>
    <script>
        function test4(){
            var div4 = document.getElementById('div44');
            var pdiv4 = div4.parentNode;
    
            var div=document.createElement("div");
            var oText = document.createTextNode("新插入的4号地div元素");
            div.appendChild(oText);
    
            pdiv4.insertBefore(div, div4);
        }
        function test3(){
            var div3 = document.getElementById('div33');
            var pdiv3 = div3.parentNode;
    
            var div=document.createElement("div");
            var oText = document.createTextNode("我是新的第三号");
            div.appendChild(oText);
    
            pdiv3.replaceChild(div, div3);
        }
        function test2(){
            var ww=document.getElementById('div22');
            var pdiv = ww.parentNode;  // 找到付元素
    //        alert(pdiv.innerHTML);
    
            var div=document.createElement("div");
            var oText = document.createTextNode("haha");
            div.appendChild(oText);
            // appendChild函数 将新的子元素添加到所有已经存在的子元素的末尾
    //        document.body.appendChild(div);
    
            pdiv.appendChild(div);
    
        }
    function test1() {
        var div1 = document.getElementById('div1');
    //    div1.firstChild.nodeValue = '改变了内容';
        alert(div1.innerHTML);
    //    alert(div1.innerText);
    }
    </script>
    </body>
    </html>

    在div前后添加新句子

  • 相关阅读:
    weblogic 的应用 常见问题处理 db2 链接不上(转载)
    WebLogic简单的备份和恢复
    linux 切换用户之后变成-bash-x.x$的解决方法
    weblogic迁移随手记
    生产环境下Centos 6.5优化配置 (装载)
    查看db2表空间使用率
    Linux 之 rsyslog 系统日志转发(转载)
    windows下定时利用bat脚本实现ftp上传和下载
    rsyslog同步history日志(转载)
    linux比较指令comm、diff、grep -Ff
  • 原文地址:https://www.cnblogs.com/zxy945/p/6524392.html
Copyright © 2011-2022 走看看