AppendChild not working in Ajax request

前端 未结 2 2016
轻奢々
轻奢々 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:45

    AppendChild expects an object, where innerHTML works with a String. And since your server returns partial HTML, this will only work with innerHTML.

提交回复
热议问题