我不确定我能说清楚这一点。我想在HTML内容中添加一个元素,它将自动要求浏览器在加载时垂直滚动。像一个锚。所以:
| visible area |
| content html |
| content html | our monitor
| content html |
| content html |
----------------
|
|
| * here comes the HTML element which will ask the browser to scroll here
|
|
答案 0 :(得分:0)
$(document).ready(function()
{
$("html,body").animate({scrollTop: 200}, 1000);
}
没有经过测试,请告诉我它是否无法正常工作
答案 1 :(得分:0)
$(document).ready(function(){
var scrolldiv = $('#content');
$('html, body').animate({
scrollTop: $(scrolldiv).offset().top
}, 1000);
});
scrolldiv将是包含内容html的元素;