私はアカウント作成フォームを作成し、javascriptを使用して検証しています。私はそれを修正し最適化する助けを得ることができると期待していた。間違ったアラートが返され、その他いくつかの問題があります。改善は歓迎されており、私が得るアドバイスに感謝します。おかげユーザーアカウント用のJavaScriptフォームの検証
<!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=utf-8" />
<title>Create an Accoount</title>
<script type="text/javascript">
function validateform() {
//vars
var username = document.forms["usercreate"]["username"].value;
var email = document.forms["usercreate"]["email"].value;
var pass1 = document.forms["usercreate"]["pass1"].value;
var pass2 = document.forms["usercreate"]["pass2"].value;
//null check
if(username = "") {
alert ("You forgot the user name");
return false;
}
if(email = "") {
alert ("You forgot the email address");
return false;
}
if(pass1 = "") {
alert ("You forgot a password address");
return false;
}
if(pass2 = "") {
alert ("You forgot a password address");
return false;
}
if (username.length < 3 || username.length > 15) {
alert("User name is too short (under 3) or too big (over 15)");
return false;
}
if (pass1 != pass2) {
alert ("Passwords don't match");
return false;
}
if (pass1.length < 4) {
alert ("Your is password is too short (under 4)");
return false;
}
//email check
var atpos=email.indexOf("@");
var dotpos=email.lastIndexOf(".");
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=email.length) {
alert("Not a valid e-mail address");
return false;
}
}
</script>
</head>
<body>
<h1>Account Creation</h1>
<form name="usercreate" action="usercreate.php" method="post" onsubmit="return validateform();">
<p><label for="username">Pick a user name (must be at least three letters characters)<br />
<input type="text" name="username" value="username"/><br />
<label for="email">Enter your email address:<br />
<input type="text" name="email" value="email"/><br /> <!-- check this -->
<label for="pass1">Create a password: <br />
<input type="password" name="pass1" /><br />
<label for="pass2">Retype the password:<br />
<input type="password" name="pass2" /><br />
<input type="submit" value="Create Account"/><br />
</form>
</p></body>
</html>
感謝を試してみてください、それは、このような単純なミスだが、私はそれを考えてもみませんでした。決して少なく、ありがとうございます。 – cosmc