Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>文字加密及解密</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<p><input id="text1" name="textfield" value="手册网"></p>
<input type="button" name="Button1" value="文字加密" onClick="Encrypt(text1.value)">
<input type="button" name="Button2" value="文字解密" onClick="unEncrypt(text1.value)">
<script language="JavaScript">
var p=0;
function Encrypt(Text) {
p=p+1;
output = new String;
alterText = new Array();
CSS代码...
JS代码...
xxxxxxxxxx