Unescape简单的Js加密与解密代码,与烈火网站长工具的Unescape加密/解密工具是一样的道理,那个输入框可以换成文本框,这是个中文加密程序,输入英文可能看不到效果,所以说测试时候最好输入中文字符,然后点击“加密”就能看到效果了。 示例: <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>提示:可修改后代码再运行! 文章导航 js实现的网页计算器雏形,简单的计算器JavaScript实现金字塔式的乘法口诀表