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



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

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

如何从这些<td>标签中提取文本的特定部分?

我从Ajax请求中提取该代码后成功地解析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>元素完成。

如果您将在其中搜索多种标签,我建议使用数组或对象来组织拉动数据。

相关内容

  • 没有找到相关文章

最新更新