我正在尝试使用 jQuery 操作 XML。特别是,我想对Question
标签的值进行分组,GroupName
这样我就可以创建一个带有GroupName
as 标题的 jQuery Accordion 和每个GroupName
作为内容的问题。
XML:
<?xml version="1.0"?>
<GenericFormData>
<UserQuestions>
<UserQuestion>
<BoxID>Box_1_6</BoxID>
<Question>Refund requested?</Question>
<FieldType>3</FieldType>
<GroupName/>
</UserQuestion>
<UserQuestion>
<BoxID>Box_1_7</BoxID>
<Question>Would you like to receive forms?</Question>
<FieldType>3</FieldType>
<GroupName/>
</UserQuestion>
<UserQuestion>
<BoxID>Box_2_14</BoxID>
<Question>Listing nihil?</Question>
<FieldType>3</FieldType>
<GroupName>VIII</GroupName>
</UserQuestion>
<UserQuestion>
<BoxID>Box_2_15</BoxID>
<Question>Creation date</Question>
<FieldType>2</FieldType>
<GroupName>Date and signature</GroupName>
</UserQuestion>
<UserQuestion>
<BoxID>Box_2_16</BoxID>
<Question>Name of the person signing</Question>
<FieldType>0</FieldType>
<GroupName>Date and signature</GroupName>
</UserQuestion>
<UserQuestion>
<BoxID>Box_2_17</BoxID>
<Question>function of the person signing</Question>
<FieldType>0</FieldType>
<GroupName>Date and signature</GroupName>
</UserQuestion>
<UserQuestion>
<BoxID>Box_2_18</BoxID>
<Question>Phone number of the person signing</Question>
<FieldType>0</FieldType>
<GroupName>Date and signature</GroupName>
</UserQuestion>
<UserQuestion>
<BoxID>Box99</BoxID>
<Question>Liability</Question>
<FieldType>1</FieldType>
<GroupName>VII</GroupName>
</UserQuestion>
</UserQuestions>
</GenericFormData>
jQuery:
$(xmlDoc).find('GroupName').filter(function () {
return $(this).text() === groupnames[i].toString();
}).parents().find('UserQuestion').each(function () {
//logic to display `Question` goes here
});
但这并不像它应该的那样工作。我正在迭代groupnames
(包含应有的唯一值),但该each()
方法产生的太多了。有人看到我做错了什么吗?非常感激。