javascript实现的对文本字符串加密解密特效代码

所属分类: 网页特效-实用工具    2023-11-28 04:46:18

javascript实现的对文本字符串加密解密特效代码 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

javascript实现的对文本字符串加密解密特效代码(共3个文件)

    • index.html

使用方法

const encryptbtn = document.querySelector('.encrypt-btn');
const decryptbtn = document.querySelector('.decrypt-btn');

encryptbtn.addEventListener('click', ()=> {
    const msg = document.querySelector('.js-input').value;
    const key = parseInt(document.querySelector('.js-numb').value);
    if (msg !== "" & key !== ""){
        var newmsg = '';
        for(let k=0; k < msg.length; k++){
            var x = msg.charCodeAt(k) + key;
            newmsg += String.fromCharCode(x);
        }
        document.querySelector('.new-msg').innerHTML = `
        <h2>加密消息</h2>
        <p>${newmsg}</p>
        `;
    }
    else{
        alert("请输入你的文本字符或密钥!");
    } 
});

decryptbtn.addEventListener('click', ()=> {
    const msg = document.querySelector('.js-input').value;
    const key = parseInt(document.querySelector('.js-numb').value);
    
    if (msg !== "" & key !== ""){
        var newmsg = '';
        for(let k=0; k < msg.length; k++){
            var x = msg.charCodeAt(k) - key;
            newmsg += String.fromCharCode(x);
        }
        document.querySelector('.new-msg').innerHTML = `
        <h2>解密消息</h2>
        <p>${newmsg}</p>
        `;
    }
    else{
        alert("请输入你的文本字符或密钥!");
    }
})

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 实用工具

jquery+css实现的环形文字盖章展示特效

一款模拟印章环形文字特效,支持在线自定义文字及角度调整。
  实用工具
 1251  0

jquery使用HTML的table表格创建的计算器插件

一个简单的在线计算器插件,使用JavaScript(jQuery)和HTML表构建,非常实用。
  实用工具
 3197  0

基于html2canvas将html导出为图片或PDF文件

这是一款超级实用的转换工具插件,可将html内容导出为PDF文件。
  实用工具
 964  0

jquery简易版在线计算器插件

一款简单的在线计算器插件,可用于加法、减法、乘法和除法等基本运算。
  实用工具
 1195  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论