标 题: 加密页面源代码脚本JS
(选自:Html区,作者:qiandan (如烟),时间:2000年11月13日)
先将下列代码插入到<head></head>区中:
<SCRIPT language=javascript>
<!--
var Words;
function SetWords(word)
{
Words = escape(word.value);
}
function SetNewWords(form)
{
var NewWords;
NewWords = Words
form.NewWords.value = NewWords;
}
//-->
</SCRIPT>
在你需要实施此特效的地方插入下列代码:
<TABLE border=5 borderColor=blue borderlight="green">
<TBODY>
<TR>
<TD align=middle height=50 width=500>
<FORM method=post>
<DIV align=center>
<DIV align=center><FONT color=#0066ff>加密页面源代码脚本</FONT></DIV>
<P>将你的页面源代码粘贴在下面的框内,要包括所有的标签例如html , head, body等。</P></DIV>
<P align=center><TEXTAREA cols=50 name=Word onchange=SetWords(this) rows=7 VALUE=""></TEXTAREA>
<P align=center><INPUT onclick=SetNewWords(this.form) type=button value=开始转换>
<P align=center><TEXTAREA cols=50 name=NewWords rows=7 VALUE=""></TEXTAREA>
</FORM>
<P align=center>以上是转换好的代码,将他们加入如下脚本的引号""区内,就是加密后的HTML了!
<P><FONT face="Arial, Helvetica, sans-serif"><B><HTML><BR><HEAD><BR >
<SCRIPT LANGUAGE="Javascript"><BR><!--<BR>var Words =<FONT color=red>" "
</FONT>//put your cripto code there<BR>function SetNewWords()<BR>{<BR>
var
NewWords;<BR>NewWords = unescape(Words);<BR>document.write(NewWords);<BR>}
<BR>SetNewWords();<BR>// --><BR></SCRIPT><BR></HEAD><BR><BODY><BR></BODY><BR></HTML></B></FONT>
</P></TD></TR></TBODY></TABLE>