input type="reset"タグ
input(type="reset")タグは、リセットボタンを作成するタグです。
解説
formタグの子要素として定義するか、form属性で対応するフォームを指定して使用します。
リセットボタンを押すと、対応するフォームの内容が初期値にリセットされます。
コンテンツ・モデル
カテゴリー (自カテゴリ) | フロー・コンテンツ フレージング・コンテンツ インタラクティブ・コンテンツ |
コンテキスト (親カテゴリ) | フレージング・コンテンツを許可する場所 |
コンテンツ・モデル (子カテゴリ) | なし |
属性
input(type="reset")タグには以下の属性が指定できます。
属性 | 説明 |
---|---|
name | 名前を指定する (例)name="btnReset" |
value | リセットボタンに表示する文字列を指定する (例)value="リセット" |
form | 対応するフォームを指定する (例)form="fm1" |
属性 | 説明 |
---|---|
class | クラスを指定する (例)class="hoge" |
id | IDを指定する (例)id="foo" |
style | スタイルを指定する (例)style="color:red;" |
その他のグローバル属性値については、グローバル属性をご覧ください。
サンプル
formタグの子要素として定義したサンプル
<form action="hoge.php" method="post">
<input type="text" name="txt01" value="ほげ">
<input type="reset" name="btnReset" value="リセット">
<input type="submit" name="btnSubmit" value="送信">
</form>
formを指定したサンプル
<form id="fm1" action="hoge.php" method="post">
<input type="text" name="txt01" value="ほげ">
</form>
<input type="reset" name="btnReset" value="リセット">
<input type="submit" name="btnSubmit" value="送信">
備考
- リセットボタンを押すと初期値(初期value値)に戻ります。なのでブランクや未選択状態になるとは限りません。
関連項目
- form:送信フォームを作成する
- input type="text":テキスト入力欄を作成する
- input type="checkbox":チェックボックス欄を作成する
- input type="date":日付入力欄を作成する
- input type="time":時刻入力欄を作成する
- input type="month":月の入力欄を作成する
- input type="week":週の入力欄を作成する
- input type="radio":ラジオボタンを作成する
- input type="password":パスワード入力欄を作成する
- input type="hidden":隠しパラメータを作成する
- input type="file":ファイル送信コントロールを作成する
- input type="button":汎用ボタンを作成する
- input type="image":画像ボタンを作成する
- input type="number":数値入力欄を作成する
- input type="submit":送信ボタンを作成する
- input type="reset":リセットボタンを作成する
- input type="color":色の入力欄を作成する
- input type="email":e-mailの入力欄を作成する
- input type="url":URLの入力欄を作成する
- input type="tel":電話番号の入力欄を作成する
- input type="range":スライダー入力欄を作成する