打开页面div滚动条定位(别用锚点)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打开页面div滚动条定位(别用锚点)相关的知识,希望对你有一定的参考价值。
打开页面div滚动条定位(别用锚点)
来啦!客官久等了!!!!! 上代码:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>打开页面div滚动条定位</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="jquery-1.8.2.min.js"></script> <script> $(document).ready(function(){ var goTop = $("#div-top").position().top; $("#content").animate({scrollTop: goTop}, 0); }); </script> </head> <body> <div id="content" style="width:300px;height:500px;background:#ccc;overflow:auto;"> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360" id="div-top"><div style="width:200px;height:50px;background:#ff0">这里此时正在to do something</div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> <div style="border:1px solid #f00;width:250px;height:100px;margin-top:10px;background:#360"><div style="width:200px;height:50px;background:#ff0"></div></div> </div> </body> </html>
营养成分:
animate() 方法执行 CSS 属性集的自定义动画。
position() 方法返回匹配元素相对于父元素的位置(偏移)。该方法返回的对象包含两个整型属性:top 和 left,以像素计
(The End)
以上是关于打开页面div滚动条定位(别用锚点)的主要内容,如果未能解决你的问题,请参考以下文章
html js点击按钮滚动跳转定位到页面指定位置(DIV)的方法代码