功能介绍:js字符串利用加密escape
和解密unescape
。代码如下:
加密方法:
function compile(code) { var c=String.fromCharCode(code.charCodeAt(0)+code.length); for(var i=1;i<code.length;i++){ c+=String.fromCharCode(code.charCodeAt(i)+code.charCodeAt(i-1)); } return(escape(c)); }
解密方法:
function uncompile(code) { code=unescape(code); var c=String.fromCharCode(code.charCodeAt(0)-code.length); for(var i=1;i<code.length;i++){ c+=String.fromCharCode(code.charCodeAt(i)-c.charCodeAt(i-1)); } return c; }
上面是“js字符串加密解密代码”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2272.html
workflows工作流
- 1个可爱的白色短发女孩
- 森林里坐着一个外星人ComfyUI工作流
- 一只黑色的小猫在童话森林里嗅着一朵发光的外星花
- 树上一个快乐的猕猴桃ComfyUI工作流
- 水晶玉雕巨龙ComfyUI工作流
- 一个红头发明亮眼睛的漂亮女人
- 一个以破旧的怀旧史努比玩偶
- 一朵在晨光中带着露珠的蓝玫瑰
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!