为什么IE中的jQuery Ajax请求返回null?

时间:2011-10-21 11:36:30

标签: jquery ajax internet-explorer null

这就是我的要求现在的样子。如果我直接访问服务器URL它可以工作。它正在返回所需的数据。在Chrome和Firefox中完美无瑕。在IE中它没有。请求成功但返回的json为null。它在Firefox 3.0和IE中做同样的事情。

$.ajax({
                        type: "POST",
                        url: "http://www.tpltm.ro/dbm/index.php?r=routes/get&type=4e60922f2eb58",
                        cache: false,
                        contentType: "application/json; charset=utf-8",
                        dataType : "json",
                        success: function(msg) {
                          console.log(msg);
                               createMenu(msg);
                        },
                        error: function() {
                               console.log("Error: ajaxRequest");
                        }
                 });

1 个答案:

答案 0 :(得分:1)

你确定问题不仅仅是'console.log(msg);'在执行'createMenu'函数之前会导致IE无声地失败?