<html> <head> <meta http-equiv="content-type" content="text/html; charset=GB2312" /> <title>最简单的加密与解密</title> <!-- 样式表 --> <style> * { font-size:12px; font-family:宋体, Arial; font-weight:normal; color:#333; } /*规定了所有的字体样式*/ textarea { width:100%; height:80px; border:1px solid black; } /*定义多行文本框的样式*/ </style> <script> function $(str){ return(document.getElementById(str)); } </script> </head> <body style="overflow:auto;"> 请输入需要加密或解密的中文内容:<br/> <input type="text" id="txt1"><br/> <center> <input type="button" value="加密" onclick="$('txt2').value = escape($('txt1').value);" /> <input type="button" value="解密" onclick="$('txt2').value = unescape($('txt1').value);" /> </center> 结果输出:<br/> <input type="text" id="txt2"><br/> </body> </html><br /><center>如不能显示效果,请按Ctrl+F5刷新本页,更多网页代码:<a href='http://www.veryhuo.com/' target='_blank'>http://www.veryhuo.com/</a></center> 文章源自:烈火网,原文:http://www.veryhuo.com/a/view/unescape.html
?