フォームを作る

| No Comments | No TrackBacks



今さらながら,フォームの作り方。。。



<form action="url" method="形式" enctype="mimeタイプ" target="window名">
フォームの内容
</form>

フォームの内容



  • 送信ボタン



<input type="submit" value="ラベル" name="名前">


  • リセットボタン



<input type="reset" value="ラベル">


  • テキスト入力



<input type="text" name="名前" value="デフォルト文字列" size="文字数" maxlength="最大文字数">


  • radioボタン



<input type="radio" name="名前" value="値">
<input type="radio" name="名前" value="値" checked>


  • チェックボックス



<input type="checkbox" name="名前" value="値">
<input type="checkbox" name="名前" value="値" checked>


  • メニュー



<select name="名前">
<option value="値">hogehoge</option>
<option value="値" selected>hogehoge</option>
</select>


  • label



<label for="参照ID">hogehoge</label>

これは,value属性でラベルを付けられない項目に使用して,文字列のクリックでも反応するようにします。


サンプル



<label for="hogehoge">hogehoge</label>
<input type="text" name="hogetext" id="hogehoge">
<label><input type="radio" name="number" value="1">one</label>
<label><input type="radio" name="number" value="2">two</label>

No TrackBacks

TrackBack URL: http://mirahouse.jp/mtos/mt-tb.cgi/661

Leave a comment

About this Entry

This page contains a single entry by rnaito published on May 2, 2006 1:36 PM.

csvファイルから必要な要素を取り出す was the previous entry in this blog.

スパムDB is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.