本文主要和大家分享了jquery 加密密码到cookie的实现方法,非常不错,具有参考借鉴价值,需要的朋友参考下吧,希望能帮助大家更好的掌握cookie。
废话不多说了,直接给大家贴代码了,具体代码如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <table> <tr> <th>账号:</th> <td><input type="text" id="username" /></td> </tr> <tr> <th>密码:</th> <td><input type="text" id="password" /></td> </tr> <tr> <td><button onclick="setCookie();">保存</button></td> <td><button onclick="getCookie();">读取</button></td> </tr> </table> </body> <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery.cookie/jquery.cookie.js"></script> <script type="text/javascript" src="https://raw.githubusercontent.com/yckart/jquery.base64.js/master/jquery.base64.js"></script> <script type="text/javascript"> function setCookie() { //设置cookie var loginCode = $("#username").val(); //获取用户名信息 var pwd = $("#password").val(); //获取登陆密码信息 $.cookie("username", loginCode);//调用jquery.cookie.js中的方法设置cookie中的用户名 $.cookie("pwd", $.base64.encode(pwd));//调用jquery.cookie.js中的方法设置cookie中的登陆密码,并使用base64(jquery.base64.js)进行加密 } function getCookie() { //获取cookie var loginCode = $.cookie("username"); //获取cookie中的用户名 var pwd = $.cookie("pwd"); //获取cookie中的登陆密码 if (loginCode) {//用户名存在的话把用户名填充到用户名文本框 $("#username").val(loginCode); } if (pwd) {//密码存在的话把密码填充到密码文本框 $("#password").val($.base64.decode(pwd)); } } </script> </html>
相关推荐:
Ajax跨域访问Cookie丢失问题的解决方法_AJAX相关
jQuery结合jQuery.cookie.js插件实现换肤功能示例
Atas ialah kandungan terperinci jQuery加密cookie的实现方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!