ข้อมูลอ้างอิง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 <textarea> ห่อแอตทริบิวต์

❮ แท็ก HTML <textarea>

ตัวอย่าง

ข้อความในพื้นที่ข้อความที่มี wrap="hard" จะมีขึ้นบรรทัดใหม่ (ถ้ามี) เมื่อส่งในรูปแบบ:

<textarea rows="2" cols="20" wrap="hard">
At W3Schools you will find free Web-building tutorials.
</textarea>

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

แอตทริบิวต์wrapระบุว่าจะห่อข้อความในพื้นที่ข้อความอย่างไรเมื่อส่งในแบบฟอร์ม


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

Attribute
wrap Yes Yes Yes Yes Yes

ไวยากรณ์

<textarea wrap="soft|hard">

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

Value Description
soft The text in the textarea is not wrapped when submitted in a form. This is default
hard The text in the textarea is wrapped (contains newlines) when submitted in a form. When "hard" is used, the cols attribute must be specified

❮ แท็ก HTML <textarea>