我的页面左侧是链接,右侧是数据。 现在,当我点击链接时,我使用jquery ajax调用来加载数据。
因此,当我点击链接时,我会在获取数据时使用加载图像。
代码,
$("#linkData").empty().html("<div style='text-align:center;height:400px;margin-top: 200px;'><img src='loading.gif' /></div>");
$.ajax({
type: "post",
url: urlLink,
async: false,
data: appliedData,
cache: false,
success: function(response) {
$("#linkData").html(response);
}
});
现在,这在Firefox中运行良好,但在IE版本中,只是在使用以前的数据成功后数据才会被替换。
在IE中它看起来很粘,请帮忙提一些建议。
提前致谢
答案 0 :(得分:4)
那么,你的意思是在#linkData中,你可以在IE中再次看到加载图像吗?
您是否尝试将async设置为true?