无法使用 jQueryTemplate 刷新 jQueryMobile 列表

发布于 2024-11-13 09:20:17 字数 230 浏览 2 评论 0原文

我无法刷新 jQueryMobile 中的列表。

$('ul').listview('refresh');

上面的代码生成以下错误:

未捕获的异常:在初始化之前无法调用列表视图上的方法;尝试调用方法“刷新”

I'm unable to refresh lists in jQueryMobile.

$('ul').listview('refresh');

The code above generates the following error:

uncaught exception: cannot call methods on listview prior to initialization; attempted to call method 'refresh'

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

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

发布评论

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

评论(1

别在捏我脸啦 2024-11-20 09:20:17

确保在加载 DOM 之前不调用 refresh(); $(document).ready() 确保这一点。在 DOM 完成加载之前,列表不会初始化,因此您需要对未初始化的内容调用刷新来解释您的错误。

Make sure that you're not calling refresh(); until the DOM is loaded $(document).ready() ensures this. Lists are not initialized until the DOM has finished loading and so you'd be calling refresh on something that is not initialized explaining your error.

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