这里我有用于获取JSON数据的JavaScript代码。我得到了所有的JSON值。在Firefox和Chrome中,我能够看到值,但在IE9中却看不到。你能告诉我为什么会这样吗?
$.getJSON("GetUserInfo?uid=" + user, function(result) {
console.log("User Info");
console.dir(result);
aadhaarid = result.aadhaarid;
userName = result.name;
console.log(result.aadhaarid);
$("#uname").html(result.name);
});