jquery.cookie.js

(function(){ var n = $.cookie('username'); var p = $.cookie('password'); if(n!=null) $('#j_username').val(n); if(p!=null) $('#password').val(p); if(p!=null){ $('#cookiePwd').attr('checked', true); }else{ $('#cookiePwd').attr('checked', false); } $('#cookiePwd').click(function(){ if($(this).attr('checked')){ $('#cookieInfo').attr('checked', true); } }); $('#password').keypress(function(e){ if(e.which == 13){ //Enter doLogin(); } });
js 文件大小:4.35KB