读书目录设计图片:网页在线加密解密

来源:百度文库 编辑:九乡新闻网 时间:2024/04/29 16:42:52
提示: 把你想加密的文档的源代码复制到下面的文本框内,按下加密按钮就可以得到一段加密了的页面代码,把代码复制到新的页面就可以了. [提示:可重复加密!] "; i++; alert("页面被加密了 "+i+" 次!"); } function selectCode() /* Selecting "Compilation" for Copying */ { if(document.pad.text.value.length>0) { document.pad.text.focus(); document.pad.text.select(); } else alert('没有可以选择的文本内容!') } function preview() /* Preview for the "Compilation" */ { if(document.pad.text.value.length>0) { pr=window.open("","Preview","scrollbars=1,menubar=1,status=1,width=700,height=320,left=50,top=110"); pr.document.write(document.pad.text.value); } else alert('没有可以预浏览的文本内容!') } function uncompile() /* Decompiling a "Compilation" */ { if (document.pad.text.value.length>0) { source=unescape(document.pad.text.value); document.pad.text.value=""+source+""; } else alert('你需要生成被加密的代码后才能取回源代码!') } // -->