Jquery.cookie.js Operation cookie Implementation Remember password function, very simple very powerful, like the friend can refer to the next.
Copy CodeThe code is as follows:
Verify that the password is remembered when the page is initialized
$ (document). Ready (function () {
if ($.cookie ("rmbuser") = = "true") {
$ ("#rmbUser"). attr ("Checked", true);
$ ("#user"). Val ($.cookie ("UserName"));
$ ("#pass"). Val ($.cookie ("PassWord"));
}
});
Save user Information
function Saveuserinfo () {
if ($ ("#rmbUser"). attr ("checked") = = True) {
var userName = $ ("#user"). Val ();
var PassWord = $ ("#pass"). Val ();
$.cookie ("Rmbuser", "true", {expires:7}); Store a cookie with a 7-day period
$.cookie ("UserName", UserName, {expires:7}); Store a cookie with a 7-day period
$.cookie ("PassWord", PassWord, {expires:7}); Store a cookie with a 7-day period
}
else {
$.cookie ("Rmbuser", "false", {Expires:-1});
$.cookie ("UserName", "', {Expires:-1});
$.cookie ("PassWord", "', {Expires:-1});
}
}
The most important lines of code:
Copy CodeThe code is as follows:
$.cookie (' The_cookie '); Read cookies
$.cookie (' The_cookie ', ' the_value '); Storing cookies
$.cookie (' The_cookie ', ' The_value ', {expires:7}); Store a cookie with a 7-day period
$.cookie (' The_cookie ', ', {Expires:-1}); Delete Cookies
Jquery.cookie.js Operation cookie Implementation Remember password function implementation code