我正在尝试使用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>
页面给我错误提示,出了什么问题?