Heim >Web-Frontend >js-Tutorial >JS中把字符转成ASCII值的函数示例代码_javascript技巧

JS中把字符转成ASCII值的函数示例代码_javascript技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 17:13:321105Durchsuche

字符转ascii码:用charCodeAt();
ascii码转字符:用fromCharCode();

看一个小例子

复制代码 代码如下:

<script><BR>str="A";<BR>code = str.charCodeAt(); <BR>str2 = String.fromCharCode(code);<BR>str3 = String.fromCharCode(0x60+26); <P>document.write(code+'<br />');<BR>document.write(str2+'<br />');<BR>document.write(str3);<BR></script>

输出:

65
A
z

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn