答案 0 :(得分:0)
如果您想要做的是获取此xml并从中提取信息,您应该对将xml解析为javascript对象感兴趣。你可以在this site上阅读它。关于处理数据的方式有很多信息。要使这些信息“加载”到您的变量,您必须对在此URL上进行HTTP GET的方式感兴趣。
答案 1 :(得分:0)
将此代码段复制到您的html文件中,在chrome中打开该html文件,打开开发人员工具(inspect),然后检查控制台选项卡以查看加载的xml。
<script type="text/javascript">
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var xmlDoc = this.responseXML;
console.log(xmlDoc);
}
};
xhttp.open("GET", "https://xml.buienradar.nl/", true);
xhttp.send(null);
</script>