คุณสมบัติ textDecorationColor ของ DOM จะส่งกลับและแก้ไขสีของการตกแต่งข้อความขององค์ประกอบในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
การส่งคืน textDecorationColor
object.style.textDecorationColor
-
การปรับเปลี่ยน textDecorationColor
object.style.textDecorationColor = “color”
ตัวอย่าง
ให้เราดูตัวอย่างของคุณสมบัติ textDecorationColor สไตล์ -
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
background: lightblue;
height: 100vh;
}
p {
margin: 1.5rem auto;
text-decoration: line-through;
}
.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 textDecorationColor Property Example</h1>
<p>This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.</p>
<button onclick="add()" class="btn">Change textDecorationColor</button>
<script>
function add() {
document.querySelector('p').style.textDecorationColor = "#db133a";
}
</script>
</body>
</html> ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

คลิกที่ “เปลี่ยน textDecorationColor ” เพื่อเปลี่ยนสีของเส้นผ่านข้อความในย่อหน้า
