目前的需求很简单, 就是拿到这个网站提供的当前时间网站上提供了JSONP示例但我能用原生ajax来获取这个json数据吗?期间遇到的跨域问题又怎么解决呢?求解!比如var httpRequest = new XMLHttpRequest();
httpRequest.onreadystatechange = function(){ console.log('changed!');
if(this.readyState === XMLHttpRequest.DONE){ if(this.status === 200){ console.log(this.responseText);
}
}
}
httpRequest.open('GET', 'http://www.timeapi.org/utc/now', true);
httpRequest.send(null);这段代码在snippet里运行得很好但是搬到实际网站上就有跨域的问题了
添加回答
举报
0/150
提交
取消