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