jquery – 在scrollTop上回调

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

我无法获得回调函数来处理方法scrollTop().

滚动工作,但回调不会.我哪里错了?

解决方法

这可以解决您的问题
$('html').animate({
   scrollTop: $(document).height()
},function(){
   $("#page_jump_input").focus();
});

它使用jQuery animate,因为scrollTop()没有回调函数.

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...