在firefox中没有获取chrome中的数据工作正常。需要离线和在线工作。这应该从json获取数据,但不能在chrome中获取数据。
$.ajax({
async: false,
type: "GET",
url: "filename.json",
dataType: "text",
contentType: "application/json",
success: function (data) {
console.log(data);
}
});
}