1
我試圖在網頁上scrollTo()
,我想要一個按鈕來觸發scrollTo()
;它將滾動到窗體的頂部並突出顯示第一個輸入字段。jquery滾動到表單輸入
我的當前代碼有效,但屏幕快速閃爍。我試圖使用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();
});
});
而不是使用'.animate()',你可以使用'.scrollTo()'嗎? http://flesler.com/jquery/scrollTo/ – ntgCleaner