カテゴリー
HTML5 input text

input type=”text”とは?-HTML

(例)input type=”text”の使用方法

See the Pen
form
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
<p><label>氏名:<input type="text" name="name" size="20"></label></p>
<p><label>血液型:
<select name="blood">
<option value="A">A型</option>
<option value="B">B型</option>
<option value="O">O型</option>
<option value="AB">AB型</option>
</select>
</label></p>
<fieldset>
<legend>性別</legend>
<p><label><input type="radio" name="sex" value="male">男性</label></p>
<p><label><input type="radio" name="sex" value="female">女性</label></p>
</fieldset>
<fieldset>
<legend>習慣</legend>
<p><label><input type="checkbox" name="hobby" value="tre">筋トレ</label></p>
<p><label><input type="checkbox" name="hobby" value="reading">読書</label></p>
<p><label><input type="checkbox" name="hobby" value="music">音楽</label></p>
<p><label><input type="checkbox" name="hobby" value="travel">旅行</label></p>
</fieldset>
<p><label>その他:<br><textarea name="comments" rows="2" cols="40"></textarea></label></p>
<p><input type="submit" value="送信"><input type="reset" value="リセット"></p>
</form>

input type=”text”とは?-HTML

 input type=”text”とは、テキストを入力するフォームを作成できるタグです。


 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
hidden HTML5 input

input type=”hidden”とは?-HTML

(例)input type=”hidden”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”hidden”とは?-HTML

 input type=”hidden”は、inputタグとして「非表示」データを送信することが可能です。ブラウザ上で非表示となりますが、当然ソースコードとしては見ることが可能です。
 送信したい値をvalue属性で指定し、inputタグのためname属性も指定します。