Best way to parse this XML with jQuery

前端 未结 3 894
别跟我提以往
别跟我提以往 2021-01-26 14:30
 
 
 
  
     127956816         


        
3条回答
  •  余生分开走
    2021-01-26 14:38

    Assuming you've got the xml as a string, then it should just be:

    var xml = ".....";
    val values = $("date_reception", $(xml))
    

提交回复
热议问题