• js如何往div里写div


    原有html代码:
    ...
    <div id="div_1"> </div>
    ...

    我现在想在这个div里写 <div id="div_2"> </div>.

    完成后的效果如下:
    <div id="div_1"> <div id="div_2"> </div> </div>
    这个用js怎么实现?
    谢谢!

    两个div都存在 document.getElementById('div_1').appendChild(document.getElementById('div_2)); div_1存在,div_2不存在 var div_2 = document.createElement('div'); div_2.id = 'div_2'; document.getElementById('div_1').appendChild(div_2);

    一。 document.getElementById('div_1').appendChild(document.getElementById('div_2));

    div_1存在,div_2不存在 var div_2 = document.createElement('div'); div_2.id = 'div_2'; document.getElementById('div_1').appendChild(div_2); 二。 document.getElementById("div").innerHTML='

    aaaa

    '; 2选1

  • 相关阅读:
    IO模型
    协程
    线程
    进程
    网络编程
    模块二
    面向对象(二)
    面向对象(一)
    优化异常报错
    python 模块
  • 原文地址:https://www.cnblogs.com/y0umer/p/3839549.html
Copyright © 2020-2023  润新知