我遇到了jquery和Internet Explorer的问题。在Firefox中,一切都像它应该的那样。
首先是我的代码:
<script language="javascript">
$.ajaxSetup({
beforeSend: function (xmlHttpRequest) {
$("#loadGif").show();
},
complete: function () {
$("#loadGif").hide();
},
async: false
});
$(document).ready(function () {
$("#loadGif").hide();
});
</script>
它只是在页面加载时显示一个简单的加载gif,但不在IE中,我不知道为什么。
任何提示?