คุณสมบัติ HTML DOM Style listStyle ใช้สำหรับการตั้งค่าหรือส่งคืนคุณสมบัติสามประการที่ชื่อ list-style-type, list-style-position และ list-style-image
ต่อไปนี้เป็นไวยากรณ์สำหรับ −
การตั้งค่าคุณสมบัติ listStyle -
object.style.listStyle = "type position image|initial|inherit"
อธิบายคุณสมบัติข้างต้นดังนี้ −
พารามิเตอร์ | คำอธิบาย |
---|---|
type | การกำหนดประเภทตัวทำเครื่องหมายรายการ |
ตำแหน่ง | การฟอร์การตั้งค่าตำแหน่งเครื่องหมายรายการ |
image | กำหนดรูปภาพที่กำหนดเป็นเครื่องหมายรายการ |
ค่าเริ่มต้น | การตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น |
สืบทอด | การสืบทอดค่าคุณสมบัติหลัก |
ให้เราดูตัวอย่างคุณสมบัติ listStyle -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <script> function changeListStyle() { document.getElementById("LIST1").style.listStyle = "upper-roman"; document.getElementById("Sample").innerHTML="The list style has been changed to upper Roman"; } </script> </head> <body> <ul id="LIST1"> <li>MANGO</li> <li>GUAVA</li> <li>LITCHI</li> <li>WATERMELON</li> </ul> <p>Click the below button to change the list style for the above div</p> <button type="button" onclick="changeListStyle()">Change list style</button> <p id="Sample"></p> </body> </html>
ผลลัพธ์
เมื่อคลิกที่ “เปลี่ยนรูปแบบรายการ ปุ่ม −