我正在使用以下代码,但它似乎不想在 ie 中工作,有人知道为什么吗?我已经看到将缓存设置为 false 的解决方案,这是正确的吗?如果是这样,我将如何在我的代码中实现?
提前致谢。
编辑 - 不跨域(对不起)
<script>
$.get("staffnotices/index.php", function(data) {
$.ajaxSetup({cache: false});
$("#bbs").html(data);
});
</script>
<div id="bbs">
</div>