Jquery 移动列表视图 +音隙错误
iv 在我的 jquery mobile + PhoneGap 应用程序中获得了一个列表视图,例如:"
test
- insidetest
- insidetest2 ...
" 。问题是,如果 "test" 的名称中有一个空格字符 " " 或特殊字符 "ç, í , á , _" ,它会经历无限加载动画并且不会' t 渲染到列表的节点页面。我想知道如何修复它。iv got a listview inside my jquery mobile + phonegap app, like:" <li>test<ul><li>insidetest</li>
" . the problem is that if in the name of "test" has an space character " " or a special character "ç, í , á , _" it goes though an infinite load animation and didn't render to the list's nodes page. i would like to know what to do to fix it.
<li>insidetest2</li> ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您能给我们提供jqm和phonegap版本以及使用的html吗?
我用日本数据、拉丁美洲字符和俄语做了很多列表视图,从来没有问题,也许你需要用以下方法刷新列表视图:
$('#mylistview_ID').listview("refresh");
Can you provide us the jqm and phonegap version and the html used please?
I do a lot of listviews with data un jp, with latin american chars and russian and never have problem, maybe you need to refresh the listview with the method:
$('#mylistview_ID').listview("refresh");