首页 > 代码库 > 打开页面div滚动条定位(别用锚点)
打开页面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="http://www.mamicode.com/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滚动条定位(别用锚点)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。