AppendChild not working in Ajax request

前端 未结 2 1943
轻奢々
轻奢々 2021-01-07 13:00

I have a script to add an input field element when a current one is pressed. When i use innerHTML it replaces the current, which is not what i want. So I figured appendChild

2条回答
  •  孤街浪徒
    2021-01-07 13:24

    parent.appendChild() is a function waiting for DomNode Object and you are passing a String, it can't work...

    Try :

    var d = document.createElement('div');
    d.innerHtml = xmlhttp.responseText;
    document.getElementById("org_div1").appendChild(d);
    

提交回复
热议问题