本文介绍了在scrollTop上回调的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

$("html").scrollTop($(document).height(),function(){
    $("#page_jump_input").focus();
});

我无法在方法 scrollTop( )

滚动有效,但回调不会成功。我在哪里错了?

The scrolling works, but the callback wont. Where am I going wrong?

推荐答案

这可以解决您的问题

$('html').animate({
   scrollTop: $(document).height()
}, function(){
   $("#page_jump_input").focus();
});

它使用jQuery 为 scrollTop()没有回调函数。

It uses jQuery animate as scrollTop() has no callback function.

这篇关于在scrollTop上回调的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 13:12