我非常困惑为什么这不会运行。我想点击滚动按钮向下滚动。
https://jsfiddle.net/n9jqvas9/
<script>
$("button").click(function() {
$('html,body').animate({
scrollTop: $("s2text").offset().top},
'slow');
});
</script>
答案 0 :(得分:3)
你缺少jQuery(在你的例子中)和s2text
之前的一个点,因为它是一个类。
$("#button").click(function() {
$('html,body').animate({
scrollTop: $(".s2text").offset().top},
'slow');
});
这是您更新的jsfiddle。
答案 1 :(得分:0)
答案 2 :(得分:0)
您缺少点(。)类名称。
$("button").click(function() {
$('html,body').animate({
scrollTop: $(".s2text").offset().top},
'slow');
});
&#13;