首页 > 语言 > JavaScript > 正文

javascript记住用户名和登录密码(两种方式)

2024-05-06 16:24:21
字体:
来源:转载
供稿:网友

这篇文章主要通过两种方式介绍javascript记住用户名和登录密码,有需要的小朋友可以来参考下

下面主要通过代码给大家展示下javascript记住用户名和登录密码,具体代码内容请看下文。

第一种方式:

CONTENT login.html welcome.html cookie.js common.js

login.html

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5. <title>login</title> 
  6. <script type="text/javascript" src="cookie.js"></script> 
  7. <script type="text/javascript" src="common.js"></script> 
  8. </head> 
  9. <body> 
  10. <form action=""
  11. <p> 
  12. <span>UserName:</span> 
  13. <input id="userName" type="text" value=""/></p> 
  14. <p> 
  15. <span>Password:</span> 
  16. <input id="password" type="password" value=""/></p> 
  17. <p> 
  18. <span style="font-size:12px; color:blue;">记住密码</span> 
  19. <input id="saveCookie" type="checkbox" value="" /></p> 
  20. <p> 
  21. <input id="submit" type="button" value="GO" /> 
  22. </p> 
  23. </form> 
  24. </body> 
  25. </html> 

welcome.html

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  5. <title>welcome</title> 
  6. </head> 
  7. <body> 
  8. <h1>Welcome!</h1> 
  9. <a href="login.html">点击返回登陆框</a> 
  10. </body> 
  11. </html> 
  12. cookie.js 
  13. //新建cookie。 
  14. //hours为空字符串时,cookie的生存期至浏览器会话结束。hours为数字0时,建立的是一个失效的cookie,这个cookie会覆盖已经建立过的同名、同path的cookie(如果这个cookie存在)。 
  15. function setCookie(name,value,hours,path){ 
  16. var name = escape(name); 
  17. var value = escape(value); 
  18. var expires = new Date(); 
  19. expires.setTime(expires.getTime() + hours*3600000); 
  20. path = path == "" ? "" : ";path=" + path; 
  21. _expires = (typeof hours) == "string" ? "" : ";expires=" + expires.toUTCString(); 
  22. document.cookie = name + "=" + value + _expires + path; 
  23. //获取cookie值 
  24. function getCookieValue(name){ 
  25. var name = escape(name); 
  26. //读cookie属性,这将返回文档的所有cookie 
  27. var allcookies = document.cookie;  
  28. //查找名为name的cookie的开始位置 
  29. name += "="
  30. var pos = allcookies.indexOf(name);  
  31. //如果找到了具有该名字的cookie,那么提取并使用它的值 
  32. if (pos != -1){ //如果pos值为-1则说明搜索"version="失败 
  33. var start = pos + name.length; //cookie值开始的位置 
  34. var end = allcookies.indexOf(";",start); //从cookie值开始的位置起搜索第一个";"的位置,即cookie值结尾的位置 
  35. if (end == -1) end = allcookies.length; //如果end值为-1说明cookie列表里只有一个cookie 
  36. var value = allcookies.substring(start,end); //提取cookie的值 
  37. return (value); //对它解码  
  38. }  
  39. else return ""//搜索失败,返回空字符串 
  40. //删除cookie 
  41. function deleteCookie(name,path){ 
  42. var name = escape(name); 
  43. var expires = new Date(0); 
  44. path = path == "" ? "" : ";path=" + path; 
  45. document.cookie = name + "="";expires=" + expires.toUTCString() + path; 

common.js

 

 
  1. function $(objStr){return document.getElementByIdx_x_x(objStr);} 
  2. window.onload = function(){ 
  3. //分析cookie值,显示上次的登陆信息 
  4. var userNameValue = getCookieValue("userName"); 
  5. $("userName").value = userNameValue; 
  6. var passwordValue = getCookieValue("password"); 
  7. $("password").value = passwordValue;  
  8. //写入点击事件 
  9. $("submit").onclick = function() 
  10. var userNameValue = $("userName").value; 
  11. var passwordValue = $("password").value; 
  12. //服务器验证(模拟)  
  13. var isAdmin = userNameValue == "admin" && passwordValue =="123456"
  14. var isUserA = userNameValue == "userA" && passwordValue =="userA"
  15. var isMatched = isAdmin || isUserA; 
  16. if(isMatched){ 
  17. if( $("saveCookie").checked){  
  18. setCookie("userName",$("userName").value,24,"/"); 
  19. setCookie("password",$("password").value,24,"/"); 
  20. }  
  21. alert("登陆成功,欢迎你," + userNameValue + "!"); 
  22. self.location.replace("welcome.html"); 
  23. else alert("用户名或密码错误,请重新输入!");  

第二种方式:

 

 
  1. <script type="text/javascript"
  2. window.onload=function onLoginLoaded() { 
  3. if(isPostBack == "False") { 
  4. GetLastUser(); 
  5. function GetLastUser() { 
  6. var id = "49BAC005-7D5B-4231-8CEA-16939BEACD67";//GUID标识符 
  7. var usr = GetCookie(id); 
  8. if (usr != null) { 
  9. document.getElementById('txtUserName').value = usr; 
  10. }  
  11. else { 
  12. document.getElementById('txtUserName').value = "001"
  13. GetPwdAndChk(); 
  14. //点击登录时触发客户端事件 
  15. function SetPwdAndChk() { 
  16. //取用户名 
  17. var usr = document.getElementById('txtUserName').value; 
  18. alert(usr); 
  19. //将最后一个用户信息写入到Cookie 
  20. SetLastUser(usr); 
  21. //如果记住密码选项被选中 
  22. if(document.getElementById('chkRememberPwd').checked == true) { 
  23. //取密码值 
  24. var pwd = document.getElementById('txtPassword').value; 
  25. alert(pwd); 
  26. var expdate = new Date(); 
  27. expdate.setTime(expdate.getTime() + 14 * (24 * 60 * 60 * 1000)); 
  28. //将用户名和密码写入到Cookie 
  29. SetCookie(usr, pwd, expdate); 
  30. }  
  31. else { 
  32. //如果没有选中记住密码,则立即过期 
  33. ResetCookie(); 
  34. function SetLastUser(usr) { 
  35. var id = "49BAC005-7D5B-4231-8CEA-16939BEACD67"
  36. var expdate = new Date(); 
  37. //当前时间加上两周的时间 
  38. expdate.setTime(expdate.getTime() + 14 * (24 * 60 * 60 * 1000)); 
  39. SetCookie(id, usr, expdate); 
  40. //用户名失去焦点时调用该方法 
  41. function GetPwdAndChk() { 
  42. var usr = document.getElementById('txtUserName').value; 
  43. var pwd = GetCookie(usr); 
  44. if (pwd != null) { 
  45. document.getElementById('chkRememberPwd').checked = true
  46. document.getElementById('txtPassword').value = pwd; 
  47. }  
  48. else { 
  49. document.getElementById('chkRememberPwd').checked = false
  50. document.getElementById('txtPassword').value = ""
  51. //取Cookie的值 
  52. function GetCookie(name) { 
  53. var arg = name + "="
  54. var alen = arg.length; 
  55. var clen = document.cookie.length; 
  56. var i = 0; 
  57. while (i < clen) { 
  58. var j = i + alen; 
  59. //alert(j); 
  60. if (document.cookie.substring(i, j) == arg) return getCookieVal(j); 
  61. i = document.cookie.indexOf(" ", i) + 1; 
  62. if (i == 0) break
  63. return null
  64. var isPostBack = "<%= IsPostBack %>"
  65. function getCookieVal(offset) { 
  66. var endstr = document.cookie.indexOf(";", offset); 
  67. if (endstr == -1) endstr = document.cookie.length; 
  68. return unescape(document.cookie.substring(offset, endstr)); 
  69. //写入到Cookie 
  70. function SetCookie(name, value, expires) { 
  71. var argv = SetCookie.arguments; 
  72. //本例中length = 3 
  73. var argc = SetCookie.arguments.length; 
  74. var expires = (argc > 2) ? argv[2] : null
  75. var path = (argc > 3) ? argv[3] : null
  76. var domain = (argc > 4) ? argv[4] : null
  77. var secure = (argc > 5) ? argv[5] : false
  78. document.cookie = name + "=" + escape(value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); 
  79. function ResetCookie() { 
  80. var usr = document.getElementById('txtUserName').value; 
  81. var expdate = new Date(); 
  82. SetCookie(usr, null, expdate); 
  83. </script> 
  84. </head> 
  85. <body> 
  86. <form id="form1"
  87. <div>  
  88. 用户名:<input type="text" ID="txtUserName" onblur="GetPwdAndChk()"
  89. <input type="password" ID="txtPassword"
  90. 密码: 
  91. <input type="checkbox" ID="chkRememberPwd" /> 
  92. 记住密码 
  93. <input type="button" OnClick="SetPwdAndChk()" value="进入"/> 
  94. </div> 
  95. </form> 
  96. </body> 

以上就是用两种方式展示javascript记住用户名和登录密码的全部代码,没有来得及整理运行效果图,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选