本文介绍了javascript警报中的外来字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须使用带有重音字符的法语警报,而我得到的是胡言乱语。


如何正确显示警告信息,因为重音字符的HTML字符代码在javascript警报中不起作用?


脚本存储在.js文件中,我从HTML引用它。 HTML文档是4.01 Transitional,语言是UTF-8。


非常感谢任何帮助。

I must use alerts in French with accented characters and what I get is gibberish.

How can I display alert messages properly, as HTML character codes for accented characters don''t work in javascript alerts?

The scripts are stored in a .js file and I am referencing it from HTML. The HTML document is 4.01 Transitional and the language is UTF-8.

Any help is greatly appreciated.

推荐答案




而不是用法语编写信息,为每个字符写下 Unicode

您可以在此处找到Unicode字符。


例如,对于 alert(''ABC'');

使用 alert(''\ u0041 \ u0042 \ u0043 '');

Instead of writing the message in French, write the Unicode for each character.
You may find the Unicode characters here.

eg, for alert(''ABC'');
use alert(''\u0041\u0042\u0043'');



这篇关于javascript警报中的外来字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 02:48