jquery出現問題。我無法從服務器獲取.xml文件,使用jquery中的ajax函數。我試圖在成功和錯誤時調用警報,但沒有任何觸發器。我這樣做:JQuery返回碼
$.ajax({
type: "GET",
url: "Levels.xml",
dataType: "xml",
error: function(){
alert("Ajax failed!");
},
success: function(xml){
alert(xml);
}
});
這沒有奏效。 編輯:我有這樣的代碼在我的xml文件:
<?xmlversion="1.0" encoding="ISO-8859-1"?>
<Level id="TestLevel" theme="woods">
<Wall>
<Row>111111111111111111111</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>100000000000000000001</Row>
<Row>111111111111111111111</Row>
</Wall>
</Level>
你確定你調用擺在首位的功能? JavaScript控制檯中的任何錯誤? – JJJ 2012-02-10 08:33:16
服務器是否看到請求?你確定代碼甚至被執行嗎? – nnnnnn 2012-02-10 08:33:22
沒有錯誤信息。是的,它被稱爲 – B0nde 2012-02-10 08:34:07