我已经使用 PhoneGap 开发了一个应用程序。在我的应用程序中,我使用ui
li
. 在这里,我想滚动到列表中的最后一个元素。为此,我使用了以下代码,
$('#dates li').last().addClass('active-li').focus();
$('#dates li').last().focus();
这个我也用过
$('#dates').scrollTop($('#dates li:nth-child(14)').position().top);;
额外的课程正在增加,但焦点不起作用。