怎样用原生JS直接读取.json后缀的文件
1个回答
2014-10-20
展开全部
<script language="javascript">
function getjson(){
var xmlReq ;
try{
xmlReq = new ActiveXObject("Microsoft.XMLHTTP");
var web = "1.json";//json文件路径
//异步方式
xmlReq.open("GET",web,true);
xmlReq.onreadystatechange = function(){
if (xmlReq.readystate == 4){
document.write(xmlReq.responseText);//对json的文件的操作
}
}
xmlReq.send();
catch(e){
alert(e);
}
}
</script>
参考http://blog.csdn.net/indexchen/article/details/543209
function getjson(){
var xmlReq ;
try{
xmlReq = new ActiveXObject("Microsoft.XMLHTTP");
var web = "1.json";//json文件路径
//异步方式
xmlReq.open("GET",web,true);
xmlReq.onreadystatechange = function(){
if (xmlReq.readystate == 4){
document.write(xmlReq.responseText);//对json的文件的操作
}
}
xmlReq.send();
catch(e){
alert(e);
}
}
</script>
参考http://blog.csdn.net/indexchen/article/details/543209
追问
运行之后没反应 需要导入什么文件么?
追答
控制台中有没有输出请求到的内容呢?
if (xmlReq.readystate == 4){
//这中间要写你要对json文件的操作
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询