(X)HTML/CSS/Dreamweaverの質問に優しく答えるスレ10

このエントリーをはてなブックマークに追加
445Name_Not_Found
送信後に送信ありがとうございましたと表示する方法は何がありますか?
CGIやPHPは使わずにHTMLのみで
<form action="mailto:[email protected]" enctype="text/plain" method="post">
<p><label>メールアドレス:
<input type="text" name="メールアドレス" value="" tabindex="0" accesskey="a">
</label>
<label>お名前:
<input type="text" name="名前" value="" tabindex="1" accesskey="b">
</label></p>
<p>性別:
<input type="radio" name="sex" value="man" tabindex="2" accesskey="c">男性
<input type="radio" name="sex" value="woman" tabindex="3" accesskey="d">女性<br>
職業:
<input type="checkbox" name="job" value="Student" tabindex="4" accesskey="e">学生
<input type="checkbox" name="job" value="worker" tabindex="5" accesskey="f">会社員
<input type="checkbox" name="job" value="official" tabindex="6" accesskey="g">公務員
<input type="checkbox" name="job" value="etc" tabindex="7" accesskey="h">その他
</p>
<p>年代:<select name="age" tabindex="8">
<option value="30ages">30代</option><option value="40ages">40代</option>
<option value="50ages">50代</option><option value="60ages">60代</option>
<option value="age" selected>お選びください</option>
</select></p>
<p><label>お問合せ<br>
<textarea name="title" rows="5" cols="60" tabindex="9" accesskey="i">
</textarea>
</label></p>
<p>
<input type="reset" value="送信" tabindex="10" accesskey="s">
<input type="reset" value="取消" tabindex="11" accesskey="r">
</p>
</form>