““xFC”的问题在 Blackberry 上的 jQuery 移动应用程序中
我有一个适用于 Blackberry 的 jQuery 移动应用程序。我遇到的问题如下。当我在 jQuery 移动列表视图中添加一个带有“ü”的列表项时,我的所有按钮都会在页面上中断。当我单击按钮时,我收到以下消息:“手持设备不支持指定的协议。请尝试其他 URL。”。
当列表视图中没有带有“ü”的列表项时,一切都会按预期工作。我不知道这是否是 Blackberry 上 jQuery 移动支持的问题,或者只是 Blackberry 的问题。
有办法解决这个问题吗?
I have a jQuery mobile application for Blackberry. The problem I have is the following. When I add a list item in the jQuery mobile listview with a "ü" in it all my buttons break on the page. When I click on a button I get the following message: "The protocol specified is not supported by the handheld. Please try a different URL.".
When there is no list item in the listview with a "ü" everything works as expected. I don't know if this is a problem with the jQuery mobile support on Blackberry or if it's just a Blackberry problem.
Is there a way to work around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 HTML 实体: http://www.w3schools.com/tags/ref_entities.asp
代码:
显示:
大写:
小写:
UTF-8 编码:http: //www.utf8-chartable.de/ (注意:您可以单击不同的显示选项)
更新:
对于俄语字符集您尝试过这些:
其他可尝试的来源:
其他问题:
因此这可能与您存储数据的方式有关。
Try using a HTML entity instead: http://www.w3schools.com/tags/ref_entities.asp
Code:
Display:
Uppercase:
Lowercase:
UTF-8 Encoding: http://www.utf8-chartable.de/ (Note: You can click different display options)
UPDATE:
For Russian Character Sets did you try these:
Other Sources to try:
Alternative problems:
So this could be related depending on how you store the data.
我有同样的问题。确保您的文件是 UTF-8 编码的或者您的脚本生成符合 UTF-8 的输出。我使用 Notepad++ 来转换我的文件...
I had the same issue. Make sure your files are UTF-8 encoded or your scripts produce UTF-8 conform output. I've used Notepad++ to convert my files...