带有滚动选项的 Jquery Mobile 动态列表视图

发布于 2025-01-03 11:04:13 字数 275 浏览 0 评论 0原文

我正在使用 Jquery Mobile 创建一个 Web 应用程序。我的一个功能要求我动态加载列表视图的内容。

但是每次刷新列表视图以获取新项目时,我再次将注意力集中在列表视图的顶部。

我的要求是添加动态内容,并且视图必须聚焦于最新内容。

Android 提供 setSelectionFromTop(index, top); 我想要一个与phonegap 一起工作的等效 API 来执行该任务?

也欢迎任何其他想法。

提前致谢

I'm creating a web app using Jquery Mobile.One of my feature requires me to dynamically load the contents of the listview.

But on refreshing the listview each time for new items, i'm again focused to the top of the listview.

My requirement is to add dynamic contents and view must be focused to the latest content.

Android provides setSelectionFromTop(index, top); I want a equivalent API which works along with phonegap to perform that task?

Any other idea is also welcome.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空名 2025-01-10 11:04:13

$.mobile.silentScroll(方法)
滚动到特定的 Y 位置而不触发滚动事件侦听器。

· 参数:yPos
(数字,默认为 0)。传递任意数字即可滚动到该 Y 位置。
示例:

//scroll to Y 100px             
$.mobile.silentScroll(100);

jQM 文档:

$.mobile.silentScroll (method)
Scroll to a particular Y position without triggering scroll event listeners.

· Arguments: yPos
(number, defaults to 0). Pass any number to scroll to that Y location.
Examples:

//scroll to Y 100px             
$.mobile.silentScroll(100);

jQM Docs:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文