Posted in Javascript onMay 06, 2007
<script>
test = "我来加个密玩玩,虽然是垃圾别见怪啊!"
str = ""
for( i=0; i<test.length; i++ )
{
temp = test.charCodeAt(i).toString(16);
str += "\\u"+ new Array(5-String(temp).length).join("0") +temp;
}
document.write (str)
</script>
通过Unicode转义序列来加密,按你说的可以算是混淆吧
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@