加载数据在Firefox中正常工作,但无法在IE,Chrome和IE中使用
我尝试使async:false,type =“POST”和dataType =“html”,但它仍然不适用于Chrome和IE。
我在我的索引jsp中声明,但在使用chrome和IE时不显示它。 var containerEmail = $(“#dataEmailObj”); 和handsontableEmail = containerEmail.data('handsontable');
并且在函数(res)中使用alert(res.data),它仍然显示我想要的数据。 问题有时候会在屏幕上显示出来,有时候会显示出来
这里是代码:
handsontableEmail = containerEmail.data('handsontable');
$.ajax({
url : "load-EmailConfig",
dataType : 'json',
contentType : 'application/json; charset=utf-8',
type : 'GET',
success : function(res) {
handsontableEmail.loadData(res.data);
},
error : function() {
alert("Could_not_load_data");
}
});
链接地址: http://www.djcxy.com/p/17339.html
上一篇: Load data work fine in Firefox but not work in IE, Chrome and IE