gpt4 book ai didi

javascript - 如何根据它相对于另一个 div 的位置更新一个 div

转载 作者:行者123 更新时间:2023-11-30 15:55:46 25 4
gpt4 key购买 nike

我正在尝试找到用滚动过去的 div 的日期更新 ID 为“date”的 div 的最佳方法。我认为这可以通过获取数据日期属性来完成,但是我什至无法获取滚动过去的 div 的 ID。因此,在这种情况下,日期 div 的内容应从 7 月 25 日开始,然后随着 id=2 的 div 通过日期 div,日期 div 的内容应更改为 7 月 25 日,依此类推。

index.html:

<html>
<head>
<style>

#comments {
float:left;
width:450px;
}

#date {
position: absolute;
top: 0;
margin-top: 20px;
border: 1px solid #A9F5F2;
background-color: #A9F5F2;
color: #6E6E6E;
font-weight: bold;
}

</style>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js">
</script>
<script>
$(document).ready(function() {

$(function () {
$(window).scroll(function (event) {

var p = $('#date').closest('[id]');
console.log(p);

});
});
});
</script>
</head>
<body>


<div id="1" data-date="25 July">
comment 1 comment 1 comment 1 comment 1 comment 1 comment 1 <p>
comment 1 comment 1 comment 1 <p>
comment 1 comment 1 comment 1 <p>
</div>

<div id="2" data-date="24 July">
comment 2 comment 2 comment 2 comment 2 comment 2 comment 2 <p>
comment 2 comment 2 comment 2 <p>
comment 2 comment 2 comment 2 <p>
</div>

<div id="3" data-date="23 July">
comment 3 comment 3 comment 3
comment 3 comment 3 comment 3 <p>
comment 3 comment 3 comment 3 <p>
comment 3 comment 3 comment 3 <p>
</div>

<div id="4" data-date="22 July">comment 4 comment 4 comment 4
comment 4 comment 4 comment 4 <p>
comment 4 comment 4 comment 4 <p>
comment 4 comment 4 comment 4
</div>

<div id="5" data-date="21 July">
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
comment 5 comment 5 comment 5 <p>
</div>

<div id="date" style="float:right; position: fixed">
25 July
</div>

</body>
</html>

最佳答案

您遗漏了很多代码,但我将它们放在一起 - 当一个 div 到达窗口顶部时它会检测到。希望这对您有所帮助,并且您能够添加所需的其余功能。

https://jsfiddle.net/tobyl/uquj897s/

$(window).scroll(function() {

var elemPos = $("#3").offset().top - $(window).scrollTop();
var winPos = $(window).scrollTop();

if (elemPos < winPos) {
console.log("element is above window top!");
} else {
console.log("element has not yet hit the window top.");
}
});

关于javascript - 如何根据它相对于另一个 div 的位置更新一个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38578149/

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