如何滚动到#studentName
的顶部?
我已将css用于#studentName
。所以滚动条出现在100px之后。所以我需要的是能够在触发goTop()时转到#studentName
的顶级。
css:
#studentName{
overflow-y: scroll;
max-height: 100px;
}
这是我尝试过的。 (没有滚动)
function goTOP(){
$('#studentName').animate({ 'scrollTop': 0 }, 100);
}
答案 0 :(得分:1)
只需删除引号即可。
function goTOP(){
$('#studentName').animate({ scrollTop: 0 }, 100);
}
答案 1 :(得分:0)
您在100毫秒内滚动到0px
$( "#studentName" ).scrollTop(0)
这个功能取决于你的jQuery版本......