如何顺利滚动到无效文本字段的顶部并选择
用户按下提交时会显示什么?我已经尝试了大多数.animate
,但仍然无法正常工作。有人可以帮我吗?
$('#create').on('submit', function() {
$('html, body').animate({
scrollTop: $("#create").offset().top
}, 2000);
return false;
});
答案 0 :(得分:1)
增加对动画的关注。
$('html, body').animate({
scrollTop: $("#create").offset().top
}, 2000, function () {
$('input:first').focus();
});