json与asp.net mvc无法正常工作

时间:2013-12-11 17:37:12

标签: asp.net-mvc json

我在下面的Mozilla代码中使用了firebug,它根本就没有运行。有什么建议吗?

$.ajaxSetup({ cache: false }); //only executes this line, then exit
$.ajax({
    url : "/Home/LoadMap",
    dataType: "json",
    type:"post",
    success: function (data) {

        $.each(data, function (i, item) {

            .........

        });

        $.ajaxSetup({ cache: true });
    }
});

0 个答案:

没有答案