在jQuery中利用AJAX載入XML資料並解析

來源:互聯網
上載者:User

1,Content-Type
很多時候無法解析就是Content-Type的問題。
如果本身就是xml檔案,請跳過這一步
動態產生的XML一定要將其設定為text/xml,否則預設就是text/html也就是普通的文本了。
常見語言的Content-Type設定

  1. header("Content-Type:text/xml"); //php
  2. response.ContentType="text/xml" //asp
  3. response.setHeader("ContentType","text/xml");  //jsp

2,xml結構。
XML一定要封閉的,很重要!
例:
錯誤的XML

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <name>zhangsan</name>
  3. <id>1</id>
  4. <name>lisi</name>
  5. <id>2</id>

正確的

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <stulist>
  3.         <student email="1@1.com">
  4.               <name>zhangsan</name>
  5.               <id>1</id>
  6.         </student>
  7.         <student email="2@2.com">
  8.               <name>lisi</name>
  9.               <id>2</id>
  10.         </student>
  11. </stulist>

3,解析
這裡引用macnie的
遍曆student(這裡還是用上面那個XML,子節點是student)

  1. $.ajax({
  2. url:'ajax.asp',
  3. type: 'GET',
  4. dataType: 'xml',//這裡可以不寫,但千萬別寫text或者html!!!
  5. timeout: 1000,
  6. error: function(xml){
  7.       alert('Error loading XML document'+xml);
  8. },
  9. success: function(xml){
  10.        $(xml).find("student").each(function(i){
  11.          var id=$(this).children("id"); //取對象
  12.          var idvalue=$(this).children("id").text(); //取文本
  13.          alert(id_value);//這裡就是ID的值了。
  14.          alert($(this).attr("email")); //這裡能顯示student下的email屬性。
  15.          //最後麼輸出了,這個是cssrain的寫法,貌似比macnie更JQ一點
  16.          $('<li></li>')
  17.             .html(id_value)
  18.             .appendTo('ol');
  19.       });
  20. }
  21. });

最後補充一條:保證伺服器端是utf-8的編碼,否則會亂碼!同時也要保證你的xml檔案也是utf-8
格式的:-)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.