ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML <แบบฟอร์ม> แอตทริบิวต์ชุดอักขระที่ยอมรับ

❮ แท็ก HTML <form>

ตัวอย่าง

แบบฟอร์มที่มีแอตทริบิวต์ accept-charset:

<form action="/action_page.php" accept-charset="utf-8">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="submit" value="Submit">
</form>

ความหมายและการใช้งาน

แอตทริบิวต์accept-charsetระบุการเข้ารหัสอักขระที่จะใช้สำหรับการส่งแบบฟอร์ม 


รองรับเบราว์เซอร์

Attribute
accept-charset Yes Yes Yes Yes Yes

ไวยากรณ์

<form accept-charset="character_set">

ค่าแอตทริบิวต์

Value Description
character_set A space-separated list of one or more character encodings that are to be used for the form submission.

Common values:

  • UTF-8 - Character encoding for Unicode
  • ISO-8859-1 - Character encoding for the Latin alphabet

In theory, any character encoding can be used, but no browser understands all of them. The more widely a character encoding is used, the better the chance that a browser will understand it.

To view all available character encodings, go to our Character sets reference.


❮ แท็ก HTML <form>