任何想法都没有用?
var xmlhttp = new XMLHttpRequest();
var url = "http://content.warframe.com/dynamic/worldState.php";
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var myArr = JSON.parse(xmlhttp.responseText);
myFunction(myArr);
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send();
function myFunction(arr) {
}
每次我得到status = 0
。
我使用相同的方法让我的脚本使用抽搐,但不能使这个工作。
谢谢你的帮助。
编辑:好的,不知道我怎么办才能从这个网站获取数据呢?(如果有人知道它会很棒。因为你可以猜到我不能编辑提供日期的页面,但我知道有些人能够获得JSON数据。)