當我請求服務器時,我得到了以下xml響應。任何人都可以幫助我如何解析這個數據使用jquery.And我只想選擇節點數據解析( student_name,batch_name,admission_date)。如何使用jquery解析API的xml響應,ajax
<?xml version="1.0" encoding="UTF-8"?>
<student_detail>
<student>
<student_name>sunil </student_name>
<batch_name>abc</batch_name>
<admission_date>56-2000</admission_date>
<blood_group></blood_group>
<gender>M</gender>
<nationality>India (भारत)</nationality>
<city></city>
<state></state>
<country>India (भारत)</country>
/student_additional_details>
</student>
</student_detail>
的可能的複製[什麼是解析在AJAX XML響應的最佳方式(https://stackoverflow.com/questions/3957932/whats-the-best-way-to- parse-xml-response-in-ajax) –
這個xml響應每次都會有所不同。那麼我怎樣才能在一個xml文件中添加這個響應來解析。我可以將這些數據保存在一個對象中。還有其他的方法可以做。 – neha