HOME > HTML辞典(フォーム) | |||||||||||
|
HTML辞典
|
フォーム入力フォームを作る
<form action="リンク先" method="送信方式">〜</form>
送信方式・・・get、post
送信ボタンを作る
<input type="submit">
リセットボタンを作る
<input type="reset">
画像のボタンを作る
<input type="image">
1行のテキストフィールドを作る
<input type="text">
複数行のテキストフィールドを作る
<textarea>〜</textarea>
ラジオボタンを作る
<input type="radio">
チェックボックスを作る
<input type="checkbox">
隠しフィールドを作る
<input type="hidden">
コンボボックスを作る
<select><option>〜</option></select>
リストボックスを作る
<select size="サイズ"><option>〜</option></select>
|
スポンサードリンク
| |||||||||