我正在网页上尝试scrollTo()
,我想要一个按钮来触发scrollTo()
;它将滚动到表单的顶部并突出显示第一个输入字段。
我当前的代码有效,但屏幕快速闪烁。我试图使用preventDefault()
无济于事。请参阅下面的代码。
$(document).ready(function () {
$("#get-started").click(function (e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $("#get-risk").offset().top
}, 2000);
$("#get-started-apply-now-form [name='last_name']").focus();
});
});
答案 0 :(得分:7)
当聚焦元素时,浏览器会滚动到该元素,弄乱你的动画。
将焦点放在动画回调中以避免它。
$(document).ready(function () {
$("#get-started").click(function (e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $("#get-risk").offset().top
}, 2000, function() {
$("#get-started-apply-now-form [name='last_name']").focus();
});
});
});