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

form”要素~accept-charset属性

記事May 11th,2016
July 15th, 2020
フォームの送信時の文字エンコーディングを指定する属性
この記事はHTML Living Standardに対応しています。
この記事はHTML Living Standardに対応しています。

accept-charset”属性について

accept-charset”属性はフォームの送信時の文字エンコーディングを指定します。

HTML4までは半角スペースもしくはカンマで区切って複数の文字エンコーディングを指定することができましたが、現行の仕様では文字エンコーディングはUTF-8(“utf-8”)であるべきとされます。

指定できる値

属性値 説明
utf-8 UTF-8

サンプルコード

<form method="post" action="sampleform.cgi" accept-charset="utf-8">
<fieldset>
<legend>好きな果物</legend>
<p>
<label><input type="checkbox" name="fruit[]" value="甘蕉">甘蕉</label>
<label><input type="checkbox" name="fruit[]" value="林檎">林檎</label>
<label><input type="checkbox" name="fruit[]" value="甜瓜">甜瓜</label>
<label><input type="checkbox" name="fruit[]" value="苺">苺</label>
<label><input type="checkbox" name="fruit[]" value="桃">桃</label>
</p>
</fieldset>
<fieldset>
<legend>一番好きな果物</legend>
<p>
<label><input type="radio" name="no1fruit" value="甘蕉">甘蕉</label>
<label><input type="radio" name="no1fruit" value="林檎">林檎</label>
<label><input type="radio" name="no1fruit" value="甜瓜">甜瓜</label>
<label><input type="radio" name="no1fruit" value="苺">苺</label>
<label><input type="radio" name="no1fruit" value="桃">桃</label>
</p>
</fieldset>
<fieldset>
<legend>あなたの情報</legend>
<p><label>居住地域:<input type="text" name="area"></label></p>
<p><label>年齢:<input type="number" name="age"></label></p>
</fieldset>
<p><input type="submit" value="送信する"></p>
</form>
一番上へ
トップにもどる
シェアする
シェアする
Facebookでシェアする
ツイート
Google+でシェア
Pocket
はてなブックマーク