是否可以从XMLSchema形成的表中提取特定数据?

时间:2018-02-19 14:20:42

标签: javascript xml html-table xmlschemaset xml-schema-collection

我想在网页中提取数据。数据由http://w3.org/2001/XMLSchema组成。

将提取的数据位于表格中的不同<td>标记中。当文本粘贴到<textarea>时,将自动形成表格。

如何从这些<td>代码中提取文字的特定部分?

1 个答案:

答案 0 :(得分:0)

在从ajax请求中提取XML文档之后,我已经成功解析了XML文档:

var putData; // where the selected tags name will be put
  $(xmlDoc).find('tagName').each(function(){// search within each <tagname> element
   putData = $(this).find('embeddedTagName').text();// pull the data out from the <embeddedTagName> within <tagName>
  });

这将搜索名为<tagName>的标记,并在其中搜索<embeddedTagName>以提供包含的文字。这将针对每个<tagName>元素完成。

如果您要在其中搜索多个标签,我建议您使用数组或对象来整理您提取的数据。