jquery 阿拉伯字母支持

发布于 2024-09-14 02:31:09 字数 379 浏览 5 评论 0原文

这段代码工作得很好:

Html

<html><body>
<div id="container"></div>
</body></html>

Jquery

$('<div id="footer"><p>جميع الحقوق محفوظه لشركة</p></div>').insertAfter('#container');

,但阿拉伯字母的问题看起来像这样:

������������������������

This code works very well:

Html

<html><body>
<div id="container"></div>
</body></html>

Jquery

$('<div id="footer"><p>جميع الحقوق محفوظه لشركة</p></div>').insertAfter('#container');

but the problem in Arabic letters its look like that:

������������������������

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

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

发布评论

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

评论(2

热鲨 2024-09-21 02:31:09

您可能应该在页面上指定一种编码来解决此类问题。以下是 W3C 中关于指定字符编码的页面:

http:// /www.w3.org/TR/html4/charset.html#h-5.2.2

您应该可以使用 UTF-8,您可以通过将以下标记放入 中来指定; 标签:

<META http-equiv="Content-Type" content="text/html; charset=UTF-8">

You should probably specify an encoding on your page to get around issues like this. Here's a page from the W3C on specifying character encodings:

http://www.w3.org/TR/html4/charset.html#h-5.2.2

You should be fine with UTF-8, which you can specify by putting the following tag in your <head> tag:

<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
缪败 2024-09-21 02:31:09

尝试使用 escape():

$('<div id="footer"><p>'+escape('جميع الحقوق محفوظه لشركة')+'</p></div>').insertAfter('#container');

Try using escape():

$('<div id="footer"><p>'+escape('جميع الحقوق محفوظه لشركة')+'</p></div>').insertAfter('#container');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文