我有一个包含其他几个div的div,我希望能够点击哪个div来滚动到包含div的顶部。
我不想简单地滚动到div的顶部,这将是scrollTop:0,我想要点击该div的任何div来滚动到顶部。
使用scrollTop:$(this).offset()。top仅给出相对于容器的偏移量,因此它不正确,因为它只返回一个相对较小的值。
以下是设置:
<div id="container" style="position:relative; height:400px; width:100%; overflow:auto;">
<div id="div1" class="clicker" style="height: 1000px; width 100px; ; background:blue">
Test
</div>
<div id="div2" class="clicker" style="height: 1000px; width 100px; background:green">
Test 2
</div>
<div id="div3" class="clicker" style="height: 1000px; width 100px; background:yellow">
Test 3
</div>
</div>
用这个JS:
$(".clicker").click(function ()
{
$('#container').animate({
scrollTop: WHAT GOES HERE?
}, 2000);
});
这里是jsfiddle:
欢呼声
答案 0 :(得分:6)
您需要将容器的当前滚动位置与div的位置
组合var container = $('#container');
$(".clicker").click(function () {
var top = $(this).position().top,
currentScroll = container.scrollTop();
container.animate({
scrollTop: currentScroll + top
}, 1000);
});
http://jsfiddle.net/ucag9dos/2
演示本地演示:
$(function() {
var container = $('#container');
$(".clicker").click(function() {
var top = $(this).position().top,
currentScroll = container.scrollTop();
container.animate({
scrollTop: currentScroll + top
}, 1000);
});
});
#container {
position: relative;
height: 400px;
width: 100%;
overflow: auto;
background: red
}
.clicker {
height: 1000px;
width: 100%;
}
#div1 {
background: blue
}
#div2 {
background: green
}
#div3 {
background: yellow
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="container">
<div id="div1" class="clicker">Test</div>
<div id="div2" class="clicker">Test 2</div>
<div id="div3" class="clicker">Test 3</div>
</div>
另一种方法是添加所有兄弟姐妹的身高。
答案 1 :(得分:2)
所需要的只是0
。
$(".clicker").click(function () {
$('#container').animate({
scrollTop: 0
}, 2000);
});