Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM สไตล์ borderLeft Property


คุณสมบัติ HTML DOM borderLeft ใช้เป็นชวเลขสำหรับการรับหรือตั้งค่าคุณสมบัติขอบด้านซ้ายสำหรับองค์ประกอบ คุณสมบัติ borderLeft ประกอบด้วย border-left-width, border-left-style, border-left-color

ต่อไปนี้เป็นไวยากรณ์สำหรับ −

การตั้งค่าคุณสมบัติ borderImageWidth -

object.style.borderLeft = "width style color|initial|inherit"

อธิบายคุณสมบัติข้างต้นดังนี้ −

พารามิเตอร์ คำอธิบาย
ความกว้าง สำหรับการตั้งค่าความกว้างขอบด้านซ้าย
สไตล์ สำหรับการตั้งค่าสไตล์เส้นขอบด้านซ้าย
สี สำหรับการตั้งค่าสีขอบด้านซ้าย
ค่าเริ่มต้น สำหรับการตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
ค่าเริ่มต้น สำหรับการตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
สืบทอด หากต้องการรับค่าคุณสมบัติหลัก

เรามาดูตัวอย่างคุณสมบัติ borderLeft กัน −

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
   #P1 {
      border-left: 4px solid magenta;
      font-size: 1.5rem;
   }
</style>
<script>
   function changeBorderLeft(){
      document.getElementById("P1").style.borderLeft="9px dashed red";
      document.getElementById("Sample").innerHTML="The left border for the paragraph element is now changed";
   }
</script>
</head>
<body>
<p id="P1">This is some sample text inside the paragraph. Here is another line of this sample text</p>
<p>Change the above paragraph left border properties by clicking the below button</p>
<button onclick="changeBorderLeft()">Change Border Left</button>
<p id="Sample"></p>
</body>
</html>

ผลลัพธ์

HTML DOM สไตล์ borderLeft Property

เมื่อคลิกที่ “เปลี่ยนเส้นขอบซ้าย” ปุ่ม −

HTML DOM สไตล์ borderLeft Property

ในตัวอย่างข้างต้น −

ขั้นแรกเราได้สร้างย่อหน้าที่มีรหัส “P1” ที่มีข้อความอยู่ภายในและใช้รูปแบบ css ที่เกี่ยวข้อง

#P1 {
   border-left: 4px solid magenta;
   font-size: 1.5rem;
}
<p id="P1">This is some sample text inside the paragraph. Here is another line of this sample text</p>

จากนั้นเราก็สร้างปุ่ม “เปลี่ยนขอบด้านซ้าย” ที่จะรันฟังก์ชัน changeBorderLeft() เมื่อผู้ใช้คลิก

<button onclick="changeBorderLeft()">Change Border Left</button>

ฟังก์ชัน changeBorderLeft() รับคุณสมบัติสไตล์ borderLeft ขององค์ประกอบย่อหน้าที่มีรหัส “P1” โดยใช้เมธอด getElementById() และเปลี่ยนค่าคุณสมบัติเป็น '9px dashed red' ข้อความที่ระบุการเปลี่ยนแปลงนี้จะแสดงในย่อหน้าที่มีรหัส “ตัวอย่าง” โดยใช้คุณสมบัติ innerHTML

function changeBorderLeft(){
   document.getElementById("P1").style.borderLeft="9px dashed red";
   document.getElementById("Sample").innerHTML="The left border for the paragraph element is now changed";
}