为什么我无法获取从PHP获得的对象的属性?

I am trying to receive data from database based on the name entered by user, everything works fine I do see the value on screen and no error Here is the php code :

 <?php
 $dbhost = "localhost";
 $username = "root";
 $password = "";
 mysql_connect($dbhost,$username,$password);
 @mysql_select_db("trynew") or die(mysql_error());
 $user ="mon";  
 $query = "SELECT * FROM trynewtable where name = '$user' ";
 $all_result = array();
 $result = mysql_query($query);
 if($result==FALSE)
 {
  die(mysql_error());
 }
 while($row = mysql_fetch_assoc($result))
 {
 $all_result[] = $row;
}
header('Content-Type: application/json');
$jsondata = json_encode($all_result);echo $jsondata;
mysql_close();
?>

JavaScript code :

var loadingFunc=function()
{
 var xhr;
if(window.XMLHttpRequest)
{
xhr = new XMLHttpRequest();
 }
else
{
 xhr = new ActiveXObject('Microsoft.XMLHTTP');
}
var jsonData= "";
xhr.onreadystatechange =function()
{
if(xhr.readyState==4)
{
    if(xhr.success =200)
    {
        jsonData = xhr.responseText;
        document.getElementById("dvID").innerHTML = jsonData;
        //var parsejson = JSON.parse(jsonData);
        //document.getElementById("dvIDO").innerHTML = parsejson.age;
        document.getElementById("dvIDO").innerHTML = jsonData[0].age;
    }
    else
    {
        document.getElementIdById("dvID").innerHTML = "it's not success ";
    }
}
else
{
console.log("error is here");
console.log(xhr.readyState);
}
}
var element1 = document.getElementById("dvID") ;
xhr.open("POST","index.php");
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");  
var sendD = document.getElementById("data_found").value;
var data = "data_found=" + sendD;
var element = document.getElementById("btn") ;
if(element)
{
element.addEventListener('click',function(){
console.log("just clicked")
xhr.send(data);
})
}
};

window.onload = loadingFunc();

but the output that I see on the html div is :

[{"id":"1","Name":"mon","Age":"26","Gender":"F"}]

undefined

I am getting the whole object but whenever I am trying to fetch any property of the object like age here (parsejson.age or jsonData[0].age) it's showing undefined , Could anyone help me how do I fetch any property of the object?

Kindly let me know what am I doing wrong ?

First transform the cleartext response into a javascript object. You have the line already there but commented out it seems, after that:

alert(jsonData["Age"]); //Age
alert(jsonData.Age); //Age