我正在构建一个新闻Feed页面,它会自动滚动到底部,然后等待并刷新页面并重复此过程。
此刻自动重装不起作用,它开始让我烦恼。
非常感谢任何帮助。
滚动部分效果很好
我的代码目前
<script language="javascript" type="text/javascript">
function scrolll() {
time = $('.message').length*3000;
$("html, body").animate({ scrollTop: 0 }, 0);
$("html, body").animate({ scrollTop: $(document).height() }, time,0, function() {location.reload; });
;
}
</script>
答案 0 :(得分:0)
你可以使用
location.reload();
或
window.location.href = window.location.href;
但我认为你的问题是时间,0
$("html, body").animate({ scrollTop: $(document).height() }, time, function() {location.reload(); });
如果我明白你可以使用setTimeout()
$("html, body").animate({ scrollTop: $(document).height() }, 100, function() {
setTimeout(function() {
location.reload();
}, time)
});
答案 1 :(得分:0)