脚本说明:
第一步:把如下代码加入区域中
<script language=javascript>
<!—ecms
var Words;
function SetWords(word)
{
Words = escape(word.value);
}
function SetNewWords(form)
{
var NewWords;
NewWords = Words
form.NewWords.value = NewWords;
}
//–>
</script>
第二步:把如下代码加入<body>区域中
加密页面源代码脚本
将你的页面源代码粘贴在下面的框内,要包括所有的标签例如htm
搞gaodaima代码l , head, body等。
<INPUT TYPE=BUTTON ONCLICK="SetNewWords(this.form)"
VALUE=”开始转换”>
以上是转换好的代码,将他们加入如下脚本的引号””区内,就是加密后的HTML了!
<script LANGUAGE=”Javascript”>
<!—ecms
var Words =” ” //put your cripto code there
function SetNewWords()
{
var NewWords;
NewWords = unescape(Words);
document.write(NewWords);
}
SetNewWords();
// –>
</script>
<body>