jquery 阿拉伯字母支持
这段代码工作得很好:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能应该在页面上指定一种编码来解决此类问题。以下是 W3C 中关于指定字符编码的页面:
http:// /www.w3.org/TR/html4/charset.html#h-5.2.2
您应该可以使用 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:尝试使用 escape():
Try using escape():