我在我的机器上本地设置的 apache 的 htdocs 下有一个 XML 文件和一个 HTML。
我正在尝试读取该 xml 文件,但没有收到任何响应。它甚至没有提醒状态。此外,如果我给出无效的文件名,它不会显示任何区别。xml 文件有效。谁能告诉我我在哪里失踪。
<script>
$(document).ready(function(){
console.log('hey');
$.ajax({
type: "GET",
url: "feedTest.xml",
cache: false,
dataType: "xml",
success: function(xml){
alert(status);
}
});
$("#output").append("Some Text");
});
function parseXML(xml){
$(xml).find("mainPage").each(function(){
console.log("I'm in");
$("#output").append($(this).attr("time") + "<br/>");
});
}
</script>
<body>
<div id="output">
Hello
</div>
XML 文件:
<?xml version="1.0"?>
<!--
Comments
-->
<dashboard>
<mainPage time="20">
<horizontal>2</horizontal>
<vertical>3</vertical>
<loop set="true"></loop>
<files>
<name time="10">a</name>
<name time="10">b</name>
</files>
</mainPage>
</dashboard>