使用jquery获取xml文档

时间:2014-02-07 15:57:22

标签: jquery html xml

我正在尝试使用jquery从HTML页面中的w3school网站获取xml文档。

<!DOCTYPE html>
<html>
<body>
<script src="jquery.js"></script>
<script>
$(document).ready(function() {

  $.ajax({url: "http://www.w3schools.com/xml/cd_catalog.xml",     
    success: function(xml) {
        alert("ok");  
    },
    error: function(request, error, tipo_errore) {
    alert(error+': '+ tipo_errore); }
  });
});
</script>
</body>
</html>

页面给我错误提示,出了什么问题?

0 个答案:

没有答案