DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript實現unicode與ASCII相互轉換的方法
javascript實現unicode與ASCII相互轉換的方法
編輯:關於JavaScript     

本文實例講述了javascript實現unicode與ASCII相互轉換的方法。分享給大家供大家參考,具體如下:

<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Unicode、ASCII相互轉換</title>
<script type="text/javascript">
//AsciiToUnicode("中國");
UnicodeToAscii("测试");
//ASCII 轉換 Unicode
function AsciiToUnicode(content) {
  result = '';
  for (var i=0; i<content.length; i++)
  result+='&#' + content.charCodeAt(i) + ';';
  alert("ASCII:"+content+"\nUnicode:"+result);
}
//Unicode 轉換 ASCII
function UnicodeToAscii(content) {
  var code = content.match(/&#(\d+);/g);
  result= '';
  for (var i=0; i<code.length; i++)
  result += String.fromCharCode(code[i].replace(/[&#;]/g, ''));
  alert("Unicode:"+content+"\nASCII:"+result);
}
</script>
</head>
<body>
</body>
</html>

希望本文所述對大家JavaScript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved