如何用jquery/javascript读取xml文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用jquery/javascript读取xml文件相关的知识,希望对你有一定的参考价值。

  1. //Perform when the document is ready/loaded/rendered
  2. $(document).ready(function(){
  3. //Asynchronously retrieve the xml file contents
  4. $.ajax({
  5. type: "GET",
  6. url: "sites.xml",
  7. dataType: "xml",
  8. success: function(xml) { //Upon successful retrieval
  9. //Iterate through the all the nodes/items
  10. $(xml).find('site').each(function(){ //For each item, perform the following
  11. //Read each child node and associate the values with a variable
  12. var id = $(this).attr('id'); //Find an attribute within the "site" node/element
  13. var title = $(this).find('title').text(); //Find the child element of "site" called title
  14. var url = $(this).find('url').text(); //Find the child element of "site" called title
  15. //Write out a custom link with the values above
  16. $('<div class="items" id="link_'+id+'"></div>').html('<a href="'+url+'">'+title+'</a>').appendTo('#page-wrap');
  17. //Establish the "desc" node/element as the this value below, to be referenced fro child nodes/elements
  18. $(this).find('desc').each(function(){
  19. var brief = $(this).find('brief').text();
  20. var long = $(this).find('long').text();
  21. $('<div class="brief"></div>').html(brief).appendTo('#link_'+id);
  22. $('<div class="long"></div>').html(long).appendTo('#link_'+id);
  23. });
  24. });
  25. }
  26. });
  27. });

以上是关于如何用jquery/javascript读取xml文件的主要内容,如果未能解决你的问题,请参考以下文章

如何用C++读取XML中的xsd信息

如何用python读取xml文件

android程序中 客户端如何用pull 读取远程服务器上的xml文件? 请给出代码。谢谢。

如何用C或c++写一段代码读取xsd结构生成一个XML文件,现在我有数据文件和XSD文件

如何用java生成一个xml文件

如何用java读取ASCII码STL文件