正確用JQ的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 id_value=$(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. });

4,禁用緩衝
如果你直接使用ajax方法,可以使用cache:false來禁用緩衝
注意,是cache:false而不是cache:"false"。布爾值false不是字串的"false"。
如果你是用get或者post方法,可以在url後面加上時間戳記。比如"xml.php?ts"+(+new Date)
注意,不要用隨機數,你無法預料到隨機數會不會再次隨機到……
但是在一切正常的情況下,時間戳記是肯定不會重複的。

最後補充一條:保證伺服器端是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.