こんにちは、テキストボックスを検証するためにこのコードを取得しようとしているので、値が含まれている必要があります。そうでない場合は、フィールドを空白にできないことを説明するメッセージを表示したくありません。ここに私が書いたコードがあります:
<head>
<title>Exam entry</title>
<script language="javascript" type="text/javascript">
function validateForm() {
var result = true;
var msg="";
if (document.ExamEntry.name.value=="") {
msg+="You must enter your name \n";
document.ExamEntry.name.focus();
document.gotElementById('name').style.color="red";
result = false;
}
if (document.ExamEntry.subject.value=="") {
msg+="You must enter the subject \n";
document.ExamEntry.subject.focus();
document.gotElementById('subject').style.color="red";
result = false;
}
if (document.ExamEntry.examno.value=="") {
msg+="You must enter an examination number \n";
document.ExamEntry.examno.focus();
document.gotElementById('examno').style.color="red";
result = false;
if(msg==""){
return result;
}
{
alert(msg)
return result;
}
}
</script>
</head>
<body>
<h1>Exam Entry Form</h1>
<form name="ExamEntry" method="post" action="success.html">
<table width="50%" border="0">
<tr>
<td id="name">Name</td>
<td><input type="text" name="name" /></td>
</tr>
<tr>
<td id="subject">Subject</td>
<td><input type="text" name="subject" /></td>
</tr>
<tr>
<td id="examno">Examination Number</td>
<td><input type="integer" name="examno" /></td>
</tr>
<tr>
<td><input type="submit" name="Submit" value="Submit" onclick="return validationFrom();" /></td>
<td><input type="reset" name="Reset" value="Reset" /></td>
</tr>
</table>
</form>
</body>
どんな助けでもありがとう