JS實(shí)現(xiàn)登錄頁面記住密碼和enter鍵登錄方法推薦
來源:易賢網(wǎng) 閱讀:1190 次 日期:2016-07-01 14:58:32
溫馨提示:易賢網(wǎng)小編為您整理了“JS實(shí)現(xiàn)登錄頁面記住密碼和enter鍵登錄方法推薦”,方便廣大網(wǎng)友查閱!

下面小編就為大家?guī)硪黄狫S實(shí)現(xiàn)登錄頁面記住密碼和enter鍵登錄方法推薦。小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>按enter鍵觸發(fā)事件和記住賬號密碼</title>

<script>

//方法一:

// document.onkeypress=function(e){

// var keycode=document.all?event.keyCode:e.which;

// if(keycode==13){

// alert_login();

// };

// }

//方法二:

document.onkeypress = viewKeyInfo;

function viewKeyInfo(e) {

var e = e || event;

if ((e['keyCode'] == 13) || (e['which'] == 13)) {

alert_login();

}

}

function body_onload(){

if (1 == get_saveauth_cookies()) {

var tmp_user = '';

var tmp_pwd = '';

tmp_user = get_user_cookies();

tmp_pwd = get_pwd_cookies();

document.getElementById("tt_user").value = tmp_user;

document.getElementById("pd_pwd").value = tmp_pwd;

document.getElementById("chx_save_auth").checked = true;

}

}

function alert_login(){

if (document.getElementById("chx_save_auth").checked == true) {

var cookies_uesr = document.getElementById("tt_user").value;

var cookies_pwd = document.getElementById("pd_pwd").value;

setcookie('loginuser', cookies_uesr, 1440);

setcookie('loginpwd', cookies_pwd, 1440);

setcookie('saveauth', 1, 1440);

}

else {

setcookie('saveauth', 0, 1440);

}

location = "https://www.baidu.com";

}

function setcookie(name,value,expirehours)

{

var cookieString=name+'='+escape(value);

if (expirehours>0)

{

var date=new Date();

date.setTime(date.getTime()+expirehours*3600*1000);

cookieString = cookieString + '; expires=' + date.toGMTString();

document.cookie = cookieString;

}

document.cookie=cookieString;

}

function getcookie(name)

{

var strCookie=document.cookie;

var arrCookie=strCookie.split('; ');

for (var i=0;i<arrCookie.length;i++)

{

var arr=arrCookie[i].split('=');

if (arr[0]==name)

return unescape(arr[1]);

}

return '';

}

function get_user_cookies() {

var tmp_val = getcookie('loginuser');

return tmp_val;

}

function get_pwd_cookies() {

var tmp_val = getcookie('loginpwd');

return tmp_val;

}

function get_saveauth_cookies() {

var tmp_val = getcookie('saveauth');

return tmp_val;

}

</script>

</head>

<body onload="body_onload()">

<p>user:<input type="text" id="tt_user" style="margin-left: 34px;width: 200px;"/></p>

<p>password:<input type="password" id="pd_pwd" style="width: 200px;"/></p>

<p><input type="checkbox" id="chx_save_auth"/>save password</p>

<p><input type="button" onclick="alert_login()" value="login"/></p>

<!--<input type="button" onclick="javascript:alert_login()" value="login"/>

javascript:alert_login()與alert_login()無區(qū)別 -->

</body>

</html>

以上這篇JS實(shí)現(xiàn)登錄頁面記住密碼和enter鍵登錄方法推薦就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考

更多信息請查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)