scroll属性
储志业
2023-12-01
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.father{
width: 100px;
height: 200px;
/*如果子元素超出父元素 会出现滚动条*/
overflow: scroll;
}
.son{
width: 200px;
height: 400px;
background-color: yellow;
}
</style>
</head>
<body>
<div class="father">
<div class="son">
让他欢聚一堂木有空,二维人鱼酒桶吗二维Ruby屏幕few8u他爸妈领头人ERBGTTOP]U
</div>
</div>
<button>你滚了多远</button>
<button>你滚</button>
</body>
<script src="js/jquery-3.2.1.min.js" ></script>
<script type="text/javascript">
//scrollTop 返回或设置子元素 向上滚动了多少
$('button:first').on('click',function(){
//$('.father').scrollTop()子元素向上滚得距离
alert('儿子向上滚了'+$('.father').scrollTop()+'px,向左滚了'+$('.father').scrollLeft()+'px');
});
$('button:last').on('click',function(){
$('.father').scrollTop(100).scrollLeft(50);
});
</script>
</html>