0
如何滾動到頂部#studentName
?Div with scroll bar - 使用scrollTop滾動到頂部()
我用過css到#studentName
。所以滾動條出現在100px之後。所以我需要的是當goTop()被觸發時能夠去#studentName
的頂層。
CSS:
#studentName{
overflow-y: scroll;
max-height: 100px;
}
這是我已經試過。 (沒有滾動)
function goTOP(){
$('#studentName').animate({ 'scrollTop': 0 }, 100);
}
上面的代碼對我來說工作得很好。可能會在其他代碼中的其他位置發佈。 – Abhijeet 2014-10-29 16:04:18