このウェブサイトはご利用の端末での閲覧に対応していません。
This website does not support your device.

input”要素~“multiple”属性

記事Sep.19th, 2020
複数の値を入力を可能にする属性
この記事はHTML Living Standardに対応しています。
この記事はHTML Living Standardに対応しています。

multiple”属性について

multiple”属性はtype="email"type="file"を指定したinput”要素で表される入力欄に複数の値を入力できるようにする属性です。

multiple”属性を指定した入力欄にはコンマ(“,”)で区切ることで複数の入力値を入力してフォームで送信することができます。

指定できる値

属性値 説明
multiple 複数の値を入力を可能にする

属性値は省略できます。

サンプルコード

type="email"

属性値を省略
<form method="post" action="sample-inputtag13.php" target="_blank">
<fieldset>
<p><label>名前:<input type="text" name="name"></label></p>
<p><label>連絡先:<input type="email" name="email" multiple></label></p>
</fieldset>
<p><button type="submit">送信する</button></p>
</form>
属性値を省略

*送信すると入力内容が表示されます。
属性値を省略しない
<form method="post" action="sample-inputtag13.php" target="_blank">
<fieldset>
<p><label>名前:<input type="text" name="name"></label></p>
<p><label>連絡先:<input type="email" name="email" multiple="multiple"></label></p>
</fieldset>
<p><button type="submit">送信する</button></p>
</form>

type="file"

<form method="post" action="sampleform.php" enctype="multipart/form-data" target="_blank">
<fieldset>
<p><label>名前:<input type="text" name="name"></label></p>
<p><label>企画書:<input type="file" name="history" accept=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document" multiple></label></p>
<p><label>写真:<input type="file" name="photo" accept=".jpg,.jpeg,image/jpeg"></label></p>
</fieldset>
<p><button type="submit">送信する</button></p>
</form>

*このフォームは送信できません。
一番上へ
トップにもどる
シェアする
シェアする
Facebookでシェアする
ツイート
Google+でシェア
Pocket
はてなブックマーク