JS登入驗證null
---
title: JS表單驗證
---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
```
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<head>
<title>Student</title>
<script language="JavaScript">
function checkForm() {
var username = document.getElementById("usernameid").value;
var password = document.getElementById("passwordid").value;
if((username=null || username=='') &&(password=null || password=='')){
alert("使用者名稱或密碼不能為空");
return false;
}else {
return true;
}
}
</script>
</head>
<body>
<form method="post" name="myform">
UserName:<input type="text" name="username" id="usernameid" ><br>
PassWord:<input type="password" name="password" id="passwordid"><br>
<input type="submit" value="登入" οnclick="return checkForm();">
<input type="reset" value="重置" >
</form>
</body>
<%
%>
<jsp:forward page="success.jsp"></jsp:forward>
</html>
```
相關文章
- js登入與註冊驗證JS
- HTML_登入時的JS驗證方法HTMLJS
- 登入驗證碼生成kaptcha(輸入驗證碼)APT
- MySQL登入驗證方式MySql
- python驗證登入Python
- json web token 實踐登入以及校驗碼驗證JSONWeb
- Laravel- Auth 登入驗證Laravel
- ASP.NET登入驗證ASP.NET
- GitHub--oauth驗證登入GithubOAuth
- Django 使用LDAP驗證登入DjangoLDA
- APPCNA 指紋驗證登入APP
- 聊聊Oracle的OS驗證登入Oracle
- CAS自定義登入驗證方法
- uniapp 完成兩種方式登入 驗證碼登入 密碼登入APP密碼
- app直播原始碼,登入時輸入驗證碼、簡訊驗證身份APP原始碼
- 使用 jQuery, Angular.js 實現登入介面驗證碼詳解jQueryAngularJS
- vue登入註冊,帶token驗證Vue
- django 自定義登入驗證邏輯Django
- ORACLE登入驗證方式的詳解Oracle
- 用Abp實現兩步驗證(Two-Factor Authentication,2FA)登入(三):免登入驗證
- golang 中使用 JWT 實現登入驗證GolangJWT
- vue實現簡訊驗證碼登入Vue
- Laravel-admin 登入新增驗證碼Laravel
- sql 注入越過登入驗證例項SQL
- android Volley登入驗證的使用Android
- Oracle 登入的三種驗證機制Oracle
- node實現登入圖片驗證碼
- [翻譯] 如何修改 Laravel 的登入驗證Laravel
- spring mvc實現登入驗證碼SpringMVC
- oracle使用者登入驗證總結Oracle
- Spring Security 一鍵接入驗證碼登入和小程式登入Spring
- 通過selenium突破極驗驗證實現登入
- Spring Security 如何新增登入驗證碼?鬆哥手把手教你給微人事新增登入驗證碼Spring
- 為什麼Web端登入需要驗證碼?Web
- django與小程式實現登入驗證功能Django
- thinkphp6後臺新增google登入驗證PHPGo
- .net core 登入全域性驗證過濾器過濾器
- oracle中使用者登入的驗證方法Oracle