ข้อมูลอ้างอิง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 <input> แอตทริบิวต์ความยาวสูงสุด

❮ แท็ก HTML <input>

ตัวอย่าง

<input> องค์ประกอบที่มีความยาวสูงสุด 10 ตัวอักษร:

<form action="/action_page.php">
  <label for="username">Username:</label>
  <input type="text" id="username" name="username" maxlength="10"><br><br>
  <input type="submit" value="Submit">
</form>

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

แอตทริบิวต์maxlengthระบุจำนวนอักขระสูงสุดที่อนุญาตใน<input>องค์ประกอบ


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

ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่สนับสนุนแอตทริบิวต์อย่างเต็มที่

Attribute
maxlength Yes Yes Yes Yes Yes

ไวยากรณ์

<input maxlength="number">

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

Value Description
number The maximum number of characters allowed in the <input> element. Default value is 524288

❮ แท็ก HTML <input>