我有一个如下的 XML 文件。如何使用 Jquery 读取所有元素。请注意,处理文件时我不知道子元素名称
<Skills> <Programming>Yes</Programming> <Networking>No</Networking> <ProjectMangement>Yes</ProjectMangement> </Skills> $.ajax({ url: 'application_form.xml', dataType: "xml", success: parse, error: function(){alert("Error: Something went wrong");} }); function parse(document){ $(document).find("Skills").each(function(i,e){ //here i want to get the name of all the child elements }); }