คุณสมบัติ textOverflow ของสไตล์ DOM ส่งคืนและใช้สิ่งที่ควรเกิดขึ้นเมื่อข้อความไหลออกนอกคอนเทนเนอร์องค์ประกอบในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
ส่งคืน textOverflow
object.style.textOverflow
-
กำลังแก้ไขข้อความล้น
object.style.textOverflow = “value”
คุณค่า
ในที่นี้ ค่าสามารถเป็น −
ค่า | คำอธิบาย |
---|---|
สืบทอด | รับค่าคุณสมบัตินี้จากองค์ประกอบหลัก |
เริ่มต้น | ตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น |
คลิป | ตัดข้อความที่ล้นออกมา |
จุดไข่ปลา | กำหนดจุดไข่ปลา (“…”) เพื่อแสดงข้อความที่ถูกตัดขององค์ประกอบ |
สตริง | ตั้งค่าสตริงที่กำหนดเพื่อแสดงข้อความที่ถูกตัดขององค์ประกอบ |
ตัวอย่าง
ให้เราดูตัวอย่างคุณสมบัติสไตล์ textOverflow -
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { margin: 1.5rem auto; border: 3px solid #fff; width: 400px; white-space: nowrap; overflow: hidden; text-overflow: visible; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style textOverflow Property Example</h1> <p> This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. </p> <button onclick="add()" class="btn">Change textOverflow</button> <script> function add() { document.querySelector('p').style.textOverflow = "ellipsis"; } </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
คลิกที่ “เปลี่ยน textOverflow ” เพื่อเปลี่ยนลักษณะการทำงานของข้อความย่อหน้าที่ล้น วงรีจะถูกเพิ่มที่นี่ -