<html>
<head><br></head>
<body>
<meta charset="UTF-8">
<script type="text/javascript">
function validate()
{
var pass1=document.form1.pw.value;
var user=document.form1.name.value;
if(user.length==0)
{
alert("Username Should not be blanck");
document.form1.name.focus();
return false;
}
if (pass1.length == 0)
{
alert("You must enter password");
document.form1.pw.focus();
return false;
}
if(pass1.length<4)
{
alert("Password length should not be less than 4 characters");
document.form1.pw.focus();
return false;
}
//alert("submit");
document.form1.submit();
return true;
}
</script>
<form action="Authenticate1.php" method="post" name="form1" id="form1" enctype="multipart/form-data" ">
<table width="40%" border="1">
<tr>
<td width="20%"> </td>
<td width="40%"> </td>
<tr>
<td><b><h2></h2>Login:</td>
<tr><td>USER NAME  <input type="text" name="name"></td></tr>
<tr><td>PASSWORD  <input type="password" name="pw"></td></tr>
<tr><td><input type="button" name="submit" value="LOGIN" onclick="return validate()";> </td>
</tr> </tr>
</table>
</form>
</body>
</html>
請幫我
u能告訴我爲什麼我的窗體不提交有沒有什麼錯誤。請幫幫我。 我已經通過按鈕的使用輸入類型進行審定,然後它的作品提交,但我想通過JS形式爲什麼不提交
您的控制檯是否告訴您任何錯誤? –
如果用戶點擊提交按鈕,表單將發送,在用戶點擊按鈕時,此代碼將在javascript中運行validate()函數。 javascript不允許你的表單提交! – M98
@Kermani那是錯的 – asprin