嗨,我有以下 jquery 代码,但在 IE 中它在第一行显示“预期对象”错误。我尝试调试它,但找不到任何错误。
$(document).ready(function () {
$("button").click(function () {
$.getJSON("file1.json", function (data) {
$.each(data.firstName, function (i, s) {
alert(s);
});
}).error(function (jqXhr, textStatus, error) {
alert("ERROR: " + textStatus + ", " + error);
});
});
});