
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>Mail Form:Java Scriptで未記入項目をチェックする</title>
<script type="text/javascript" src="./任意のディレクトリ/checkform.js"></script>
</head>
<body>
<fieldset>
<legend>Mail Form</legend>
<form method="post" action="foobaa.cgi" name="conform" onSubmit="return checkForm()">
お名前(必須):<input type="text" name="お名前"><br>
電話番号(必須):<input type="text" name="電話番号" maxlength="14"><br>
Eメール(必須):<input type="text" name="メールアドレス"><br>
件名:<input type="text" name="件名"><br>
メッセージ記入欄:<textarea cols="50" rows="8" name="問合せ内容"></textarea><br>
<input value="送信する" type="submit"> <input value="全て消去" type="reset">
</form>
</fieldset>
</body>
</html>