我向json字符串发出一个ajax请求,然后我解析它,我想将这个名为“encuesta”的Json对象从事件onreadystatechange返回到“jacu”变量以全局访问
继承我的代码:
window.onload= function(){
enter code here`tabla = document.getElementById("pregunta");
enter code here`jencu= ajax("GET","datos/encuesta.json",true,"lee")
}
function ajax(metodo,url,bolean,que){
var xhr;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}else{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange=function(){
if (xhr.readyState==4 && xhr.status==200){
if(que == "lee"){
encuesta=xhr.responseText;
encuesta = JSON.parse(encuesta)
}
}
}
xhr.open(metodo,url,true);
xhr.send();
}
答案 0 :(得分:0)
如果您想要全局访问encuesta,您应该在函数之外声明它。