我编写了代码,看到了firefox中的一个bug和chrome中的小bug
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mozila Firefox</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function(){
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
alert('1');
}
});
});
</script>
</head>
<body>
CONTENT FOR SCROLL
</body>
</html>
当我在firefox中滚动此页面时,我遇到了覆盖黑色透明背景浏览器的错误。
在Chrome中只有越来越多的警报。
在Firefox中关闭标签! 直播:http://forum.xeksec.com/habr/mozilla_crash_or_wtf/
答案 0 :(得分:2)
答案 1 :(得分:1)
编辑: 以上并不总是有效...事实上,我已经检查过一些解决方案,包括Stack Overflow中的这些解决方案。其他通常的建议有同样的问题(例如Alert using Jquery when Scroll to end of Page) 我在Ubuntu上使用FF11。
我认为这是一个性能问题。如果你把maxScroll放在一个变量中它起作用(至少对我而言) 这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mozila Firefox</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function(){
var maxScroll = $(document).height() - $(window).height();
$(window).scroll(function(){
if ($(window).scrollTop() == maxScroll){
alert('1');
}
});
});
</script>
</head>
<body>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>