我有像
这样的代码function scrollme(){
dh=document.body.scrollHeight
ch=document.body.clientHeight
if(dh>ch){
moveme=dh-ch
window.scrollTo(0,moveme)
}
}
但是我希望它只滚动一个名为“feed”的div而不是整个页面。我怎么能这样做?
答案 0 :(得分:1)
document.getElementById('feed').scrollTop = y;