我在下面的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 });
}
});