我试图在滚动到底部时加载更多数据。所有功能都可以在Edge,Chrome,Firefox中正常运行,但在IE 11中则无法运行。
这是我的代码:
$(window).scroll(function() {
if ($(document).height() <= $(this).scrollTop() + $(this).height()) {
if (timer) {
window.clearTimeout(timer);
}
timer = window.setTimeout(function() {
// Magic goes here
}, 400);
}
});
元标记设置为
<meta http-equiv="X-UA-Compatible" content="IE=edge">
很多次
编辑
如果我在IE上打开调试模式,则一切正常。没有错误
答案 0 :(得分:0)
只需在IE11上测试您的代码示例,即可正常运行。这是我在浏览器中运行的测试代码:
var timer;
$(window).scroll(function(){
if ($(document).height() <= $(this).scrollTop() + $(this).height()) {
if(timer) {
window.clearTimeout(timer);
}
timer = window.setTimeout(function() {
alert('bottom of page');
});
}
});
在IE11上的控制台中是否抛出任何错误?共享更多有问题的代码会有所帮助,因为您给出的示例没有内在的原因无法在IE11上使用。