无法在IE9浏览器中获取json数据

时间:2015-06-01 08:36:31

标签: javascript jquery json

这里我有用于获取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);
});

0 个答案:

没有答案