源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

jQuery简单实现MD5加密的方法

  • 时间:2022-02-13 03:24 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:jQuery简单实现MD5加密的方法
本文实例讲述了jQuery简单实现MD5加密的方法。分享给大家供大家参考,具体如下: [b]1、问题背景[/b] 有两个输入框,一个输入明文,另一个输入框显示密文 [b]2、实现源码[/b]
<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title>jQuery实现MD5加密</title>
  <script type="text/javascript" src="js/jquery-1.12.4.js" ></script>
  <script type="text/javascript" src="js/jquery.md5.js" ></script>
  <script>
   $(function(){
    $("#before").blur(function(){
     var before = $(this).val();
     var beforeVal = $.md5(before);
     $("#after").val(beforeVal);
    });
   });
  </script>
 </head>
 <body>
  <div>
   <input type="text" id="before" style="width: 300px;"/><br><br>
   <input type="text" id="after" style="width: 300px;"/>
  </div>
 </body>
</html>

[b]3、实现结果[/b] [img]http://files.jb51.net/file_images/article/201703/201733111630571.jpg?201723111711[/img] [b]附:[/b][code]jquery.md5.js[/code]文件[b][url=http://xiazai.jb51.net/201703/yuanma/jquery.md5(jb51.net).rar]本站下载地址[/url][/b][b]PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:[/b] [b]MD5在线加密工具: [/b][url=http://tools.jb51.net/password/CreateMD5Password]http://tools.jb51.net/password/CreateMD5Password[/url] [b]迅雷、快车、旋风URL加密/解密工具: [/b][url=http://tools.jb51.net/password/urlrethunder]http://tools.jb51.net/password/urlrethunder[/url] [b]在线散列/哈希算法加密工具: [/b][url=http://tools.jb51.net/password/hash_encrypt]http://tools.jb51.net/password/hash_encrypt[/url] [b]在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具: [/b][url=http://tools.jb51.net/password/hash_md5_sha]http://tools.jb51.net/password/hash_md5_sha[/url] [b]在线sha1/sha224/sha256/sha384/sha512加密工具: [/b][url=http://tools.jb51.net/password/sha_encode]http://tools.jb51.net/password/sha_encode[/url] 更多关于jQuery相关内容感兴趣的读者可查看本站专题:《[url=http://www.1sucai.cn/Special/200.htm]jQuery常用插件及用法总结[/url]》、《[url=http://www.1sucai.cn/Special/451.htm]jQuery扩展技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/514.htm]jQuery切换特效与技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/628.htm]jQuery遍历算法与技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/430.htm]jQuery常见经典特效汇总[/url]》、《[url=http://www.1sucai.cn/Special/104.htm]jQuery动画与特效用法总结[/url]》及《[url=http://www.1sucai.cn/Special/75.htm]jquery选择器用法总结[/url]》 希望本文所述对大家jQuery程序设计有所帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部