““xFC”的问题在 Blackberry 上的 jQuery 移动应用程序中

发布于 2024-11-09 11:12:17 字数 258 浏览 0 评论 0原文

我有一个适用于 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 技术交流群。

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

发布评论

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

评论(2

自此以后,行同陌路 2024-11-16 11:12:17

尝试使用 HTML 实体: http://www.w3schools.com/tags/ref_entities.asp

代码:

Ü   Ü  Ü // capital u, umlaut mark
ü   ü  ü // small u, umlaut mark

显示:

大写:

  • Ü Ü Ü

小写:

  • ü ü ü

UTF-8 编码:http: //www.utf8-chartable.de/ (注意:您可以单击不同的显示选项)

U+00DC  Ü   c3 9c   // LATIN CAPITAL LETTER U WITH DIAERESIS
U+00FC  ü   c3 bc   // LATIN SMALL LETTER U WITH DIAERESIS

更新:

对于俄语字符集您尝试过这些:

  • charset =“windows-1251”
  • charset =“UTF-16”
  • charset =ISO-8859-1"

其他可尝试的来源:

其他问题:

因此这可能与您存储数据的方式有关。

Try using a HTML entity instead: http://www.w3schools.com/tags/ref_entities.asp

Code:

Ü   Ü  Ü // capital u, umlaut mark
ü   ü  ü // small u, umlaut mark

Display:

Uppercase:

  • Ü Ü Ü

Lowercase:

  • ü ü ü

UTF-8 Encoding: http://www.utf8-chartable.de/ (Note: You can click different display options)

U+00DC  Ü   c3 9c   // LATIN CAPITAL LETTER U WITH DIAERESIS
U+00FC  ü   c3 bc   // LATIN SMALL LETTER U WITH DIAERESIS

UPDATE:

For Russian Character Sets did you try these:

  • charset="windows-1251"
  • charset="UTF-16"
  • charset=ISO-8859-1"

Other Sources to try:

Alternative problems:

So this could be related depending on how you store the data.

指尖上得阳光 2024-11-16 11:12:17

我有同样的问题。确保您的文件是 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...

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