尝试让jQuery滚动以正常运行以下代码。
基本上,当课程k.state-disabled
未激活时,我会显示一个名为#checking
的按钮。
第一次显示此按钮时,我想滚动到名为#step1
的div的顶部。
第一部分有效(显示按钮#checking
),但滚动无效......
$(document).ready(function(){
if($(".k-state-disabled").length === 0) {
$( "#checking" ).show();
$('html,body').animate({
scrollTop: $("#step1").offset().top
});
}
});
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以尝试使用此代码 检查你的条件是否正常工作。
(文档)$。就绪(函数(){
if($(".k-state-disabled").length === 0) {
$( "#checking" ).show();
$('html, body').animate({
scrollTop: $("#step1").offset().top
}, 2000);
}
});