登入提示框與密碼提示框,生成驗證碼
先給大家看下這個效果:
未輸入值 輸入值後
以下是原始碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>登入提示框</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#TxtUserName").focus(function () {
$(this).attr({ style: "border-color:#FFA91A;" });
if ($(this).val() == "使用者名稱")
$(this).attr("value", "");
$(this).attr({ style: "color:#653C31;" });
});
$("#TxtUserName").blur(function () {
$(this).attr({ style: "border-color:#c1c1c1;" });
if ($(this).val() == "") {
$(this).attr("value", "使用者名稱");
} else {
$(this).attr({ style: "color:#653C31;" });
}
});
$("#TxtPassword").blur(function () {
if ($(this).val() == "") {
$(this).attr({ style: "display:none" });
$("#userpwd_a").attr({ style: "display:" });
$("#userpwd_a").attr("value", "密碼");
}
else {
$(this).attr({ style: "border-color:#c1c1c1;color:#653C31;" });
}
});
$("#userpwd_a").focus(function () {
if ($("#TxtPassword").val() == "") {
$(this).attr({ style: "display:none" });
$("#TxtPassword").attr({ style: "border-color:#FFA91A;display:" });
$("#TxtPassword").val("");
$("#TxtPassword").focus();
} else {
$(this).attr({ style: "display:none" });
$("#TxtPassword").attr({ style: "border-color:#FFA91A;display:" });
$("#TxtPassword").focus();
}
});
$("#TxtPassword").focus(function () {
$(this).attr({ style: "border-color:#FFA91A;color:#653C31;" });
$(this).attr("value", "");
});
});
</script>
<style type="text/css">
input{ color:red;}
</style>
</head>
<body>
<div class="outbox">
<ul class="login">
<li style="position:relative;">
<input class="username" type="text" value="使用者名稱" maxlength="24" id="TxtUserName"/>
</li>
<li>
<input type="text" id="userpwd_a" class="userpwd" value="密碼" maxlength="24" />
<input class="userpwd" type="password" value="" maxlength="24" id="TxtPassword" style="display:none"/>
</li>
</ul>
</div>
</body>
</html>
相關文章
- 登入驗證碼生成kaptcha(輸入驗證碼)APT
- uniapp 完成兩種方式登入 驗證碼登入 密碼登入APP密碼
- SpringBoot 整合 Shiro 密碼登入與郵件驗證碼登入(多 Realm 認證)Spring Boot密碼
- (原始碼)提示框MMPopupView原始碼View
- 關於登入(使用者名稱,密碼,驗證碼)密碼
- GitHub不再支援密碼驗證解決方案:SSH免密與Token登入配置Github密碼
- Redis使用認證密碼登入Redis密碼
- SSH認證免密碼登入密碼
- jquery搜尋下拉提示框/登陸賬號下拉提示框jQuery
- 一句程式碼呼叫提示框
- Flutter 密碼輸入框 驗證碼輸入框Flutter密碼
- app直播原始碼,登入時輸入驗證碼、簡訊驗證身份APP原始碼
- 說說如何在登入頁實現生成驗證碼功能
- 密碼登入密碼
- Python暴力破解網站登入密碼(帶token驗證)Python網站密碼
- ssh無密碼登入認證失敗密碼
- 登陸介面模組解析——生成圖片驗證碼
- Promise 與 Confirm 提示框Promise
- springboot + shiro 驗證碼與記住登入Spring Boot
- Linux使用者登入密碼的生成Linux密碼
- 生成驗證碼程式程式碼
- 織夢後臺登入成功又跳轉回登入介面與驗證碼
- Django登入(含隨機生成圖片驗證碼)註冊例項Django隨機
- JavaScript驗證碼生成和驗證效果JavaScript
- vue實現簡訊驗證碼登入Vue
- Laravel-admin 登入新增驗證碼Laravel
- node實現登入圖片驗證碼
- spring mvc實現登入驗證碼SpringMVC
- tooltip提示框
- Oracle 密碼驗證方式Oracle密碼
- teams 更改密碼後無法登入,提示使用 Microsoft Authenticator 驗證問題密碼ROS
- 使用JCaptcha生成驗證碼APT
- WWDC 2018:自動強密碼與驗證碼自動輸入密碼
- 修改 MySQL 登入密碼MySql密碼
- 密碼方式登入redis密碼Redis
- SSH免密碼登入密碼
- 遊戲陪玩原始碼的登入方式,簡訊驗證碼登入的實現遊戲原始碼
- Spring Security 如何新增登入驗證碼?鬆哥手把手教你給微人事新增登入驗證碼Spring