다음과 같이 코드 코드를 복사합니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<머리>
<meta http-equiv="Content-Type" content="text/html";
<title>SMS 시스템</title>
<스크립트 언어="자바스크립트">
함수 formcheck(){
if(document.form.zhanghao.value==""){
Alert("숫자는 비워둘 수 없습니다!");
this.form1.zhanghao.focus();
거짓을 반환;
}else if(document.form.email.value==""){
Alert("내용은 비워둘 수 없습니다!")
this.form1.eamil.focus();
거짓을 반환;
}그렇지 않으면 form1.submit();
}
</script>
</head>
<본문>
<form name="form" method="post" action="sendmail.php">
<테이블>
<h2>
<tr>
<th colspan="8">SMS 보내기</th>
</tr>
</h2>
<본문>
<tr bgcolor="#eeeeee">
<td align="center">번호:</td>
<td><textarea name="content" cols="80"rows="15" id="zhanghao"></textarea></td>
</tr>
<tr bgcolor="#eeeeee">
<td align="center">내용:</td>
<td><textarea name="content" cols="80"rows="15" id="email"></textarea></td>
</tr>
<tr bgcolor="#eeeeee" align="center">
<td colspan="2">
<input type="button" name="제출" value="보내기" onClick="javascript:formcheck();">
<input type="reset" name="Submit2" value="Reset">
</td>
</tr>
</body>
</table>
</form>
</body>
</html>