我是
XML和AJAX的新手,只是
Javascript和jQuery的新手.除了其他工作职责我设计我们的网站.截止日期是非常接近的,我可以想到这样做的唯一方法是使用AJAX.我有一个充满XML对象的文档,如这一个重复:
<item> <subject></subject> <date></date> <thumb></thumb> </item>
我想创建一个所有元素及其子元素的数组.我一直在阅读AJAX上的jQuery教程数小时,甚至不知道从哪里开始,因为它们都具有一定的JavaScript熟练程度.如果有人能告诉我最简单的方法来循环遍历所有的元素,并把他们的孩子放在一个数组中,我会很感激它.
使用jQuery,$.ajax()您的XML文件,并成功通过每个检索数据,如:
原文链接:https://www.f2er.com/xml/292247.htmlvar tmpSubject,tmpDate,tmpThumb; $.ajax({ url: '/your_file.xml',type: 'GET',dataType: 'xml',success: function(returnedXMLResponse){ $('item',returnedXMLResponse).each(function(){ tmpSubject = $('subject',this).text(); tmpDate = $('date',this).text(); tmpThumb = $('thumb',this).text(); //Here you can do anything you want with those temporary //variables,e.g. put them in some place in your html document //or store them in an associative array }) } });