我使用PhoneGap开发了一个应用程序。在我的应用程序中,我使用ui
li
在列表视图中显示了许多元素。在这里,我想滚动到列表中的最后一个元素。为此,我使用了以下代码,
$('#dates li').last().addClass('active-li').focus();
$('#dates li').last().focus();
我也使用过这个,
$('#dates').scrollTop($('#dates li:nth-child(14)').position().top);;
额外的课程正在增加,但重点不起作用。
答案 0 :(得分:9)
答案 1 :(得分:5)
您可以使用此代码:
$(document).ready(function(){
$('body').scrollTop($('ul li').last().position().top + $('ul li').last().height());
});
答案 2 :(得分:1)
尝试scrollTop:
$('#dates').scrollTop($('#dates').height())
或:
$('#dates').scrollTop($('#dates')[0].scrollHeight);
如果您的列表包含大量内容。