Update value in xml file

前端 未结 4 2081
暖寄归人
暖寄归人 2021-02-14 16:26

I have a xml-file:



  
    
    
    &         


        
4条回答
  •  梦谈多话
    2021-02-14 17:03

    Use AppendChild method to inser a child inside a node.

    yournode.AppendChild(ChildNode);
    

    link text

提交回复
热议问题