password.json
からなる
{
"passwd":"pavankumar",
"name":"pavan"
};
Mozilla と Chrome の両方で、セミコロンありとセミコロンなしで試してみました
function ajax_post(){
var hr= new XMLHttpRequest();
hr.open("GET", "password.json", true);
hr.setRequestHeader("Content-type", "application/json",true);
hr.onreadystatechange = function(){
if(hr.readyState == 4 && hr.status == 200){
var data = JSON.parse(hr.responseText);
alert(data); // At this stage the json file is displayed. correctly..
var status = document.getElementById("status");
status.innerHTML= data.name; //returning the undefined value....
}
}
hr.send(null);
}