gpt4 book ai didi

javascript - JS页面滚动不起作用

转载 作者:行者123 更新时间:2023-11-28 21:01:48 25 4
gpt4 key购买 nike

我写了类似的代码

$.ajax({
type: 'POST',
url: form.attr('action'),
data: data,
dataType: 'html',
success: function(html){
$(html).hide().appendTo(parent.find("[data-interactions]")).show().stop().animate({
scrollTop: $(".vote_feedback_snippet:last-child").offset().top
}, 1500,'easeInOutExpo');

当我点击发布按钮时,上面的代码会在列表底部生成新的 HTML 代码段我想要什么:-当新的 Html 片段出现时,它只会滚动到该片段

谁能帮帮我

最佳答案

尝试:

$(html).hide()
.appendTo(parent.find("[data-interactions]"))
.show('fast', function(){
$('html, body').animate({
scrollTop: $(".vote_feedback_snippet:last-child").offset().top
});
});

关于javascript - JS页面滚动不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10817215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com