gpt4 book ai didi

javascript - 滚动到加载 div 上的重要 li,例如 li class ="importants"

转载 作者:行者123 更新时间:2023-11-28 03:56:53 25 4
gpt4 key购买 nike

这是我的第一页:

<html>
<head>
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<div id="comment"></div>
<script type="text/javascript">
$(document).ready(function() {
$('#comment').load('comment.php');
});
</script>
</body>
<html>

及其comment.php:

<ul id="comments" style="overflow: scroll;">
<li>
<p>comment</p>
</li>
<li>
<p>comment</p>
</li>
<li class="importants">
<p>comment</p>
</li>
<li>
<p>comment</p>
</li>
<li>
<p>comment</p>
</li>
<li>
<p>comment</p>
</li>
</ul>

我希望ul在加载后滚动到li.importants.importants 用于显示带有滚动的评论。 (重要评论)只是这个 ul 滚动到底部!

最佳答案

$(document).ready(function() {
$('#comment').load('comment.php', function() {
$("#comments").animate({scrollTop: $('.importants').offset().top - $("body").height() + 410});
});
});

但它只适用于您的网站!!

关于javascript - 滚动到加载 div 上的重要 li,例如 li class ="importants",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47491143/

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