jquery ajax 載入xml文檔

來源:互聯網
上載者:User

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>jquery ajax 載入xml文檔</title>
<script language="網頁特效">
$.ajax({
    //這個是萬能的,不單單可以讀xml
    url:'i.xml', //xml文檔路徑
    type:'get', //請求方式
    datatype:'xml',//文件類型
    timeout:1000,//逾時時間長度
    cache:false,//是否緩衝
    error:function(){alert('oh,oh,error!haha!');},//這個是拋出載入失敗的資訊,比js的智能吧
    success:function(xml){
        alert('yeah! success!');//在這裡執行對xml文檔內容的操作
    }   
    });
//更簡潔的方法
$.get('i.xml',function(xml){
    alert('yeah! success!');//在這裡執行對xml文檔內容的操作
});

</script>

方法二

<script type="text/javascript">
$(function(){

$("#ajax").one('click',function(){
//$("#ajax").nextall().remove();
$.ajax({
url: 'ajax.xml',
//data: {id: 1, name: 0},
datatype: 'xml',
error: function(xml){
alert('載入出錯');
},
success: function(xml){
var tr='';
$(xml).find("row").each(function(i){
var id=$.trim($(this).children("id").text()); //取對象
var v1=$(this).attr('v1');
var v2=$(this).attr('v2');
var v3=$(this).attr('v3');
var v4=$(this).attr('v4');
var v5=$(this).attr('v5');
//最後麼輸出了
$('<tr></tr>')
.html('<td>id:'+id+'</td><td>v1:'+v1+'</td><td>v2:'+v2+'</td><td>v3:'+v3+'</td><td>v4:'+v4+'</td><td>v5:'+v5+'</td>')
.appendto("#list");

});
//var tabl= '<table bgcolor="#ffffff" border="0" cellpadding="1" cellspacing="1" width="100%">';
// var tab2= '</table>';
//$("#list").html(tabl + tr + tab2);
}
})
});
$("#ajax").click(function(){$(this).nextall().toggle();});
$("#t1").click(function(){$(this).next().toggle();});

})
</script>

</head>

<body>
</body>
</html>

很多時候無法解析就是content-type的問題。如果本身就是xml檔案,請跳過這一步。
   動態產生的xml一定要將其設定為text/xml,否則預設就是text/html也就是普通的文本。   常見語言的content-type設定:
   response.setheader("contenttype","text/xml");  //jsp教程
   response.contenttype= "text/xml"; //asp教程
   header("content-type:text/xml"); //php教程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.