我想在使用 div.focus 和 animate() 滚动到页面顶部后将焦点设置在 id 的文本框上,比如说 txtName。
是否有一个功能可以指定在像 document.ready 一样的动画之后在 document.ready 之后执行?
我用来滚动的代码如下所示。
$(".gototop").click(function(){
var focusElement = $("#contents");
$(focusElement).focus();
ScrollToTop(focusElement);
});
function ScrollToTop(el) {
$('html, body').animate({ scrollTop: $(el).offset().top - 50 }, 'slow');
}