问答详情
源自:9-12 插入节点appendChild()

如果想要插入的内容中有双引号

比如我想在插入一个比较复杂的节点:

<div class="mui-input-row">

<input type="text" class="mui-input-clear" placeholder="请输入班级号码" style="width: 60%;left: 30%; position: absolute;z-index: 0;">

<a  class="icon iconfont" id="addclass" style="position: absolute; z-index: 1; right: 4% ; margin-top: 10px; color: red; font-size: larger;">&#xe601;</a>

</div>

但是似乎只会读取第一个引号里的内容

提问者:阿山啊 2016-07-04 15:44

个回答

  • 湛瞳
    2016-08-15 14:13:55

      newNode.innerHTML="This is a new P";
      newNode.innerHTML+="<style>li:last-child{margin-top: 10px; color: red; font-size: larger;}</style>";

    参考网址:http://jingyan.baidu.com/article/4f7d5712c7b1061a201927c5.html

  • 慕粉3283251
    2016-07-05 11:41:06

    需要转换符的