Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để thiết lập màu sắc của trang trí văn bản bằng JavaScript?


Để đặt màu của trang trí văn bản, hãy sử dụng textDecorationColor thuộc tính trong JavaScript.

Ví dụ

Bạn có thể thử chạy mã sau để thay đổi màu của trang trí văn bản -

<!DOCTYPE html>
<html>
   <body>
      <div id = "myText"> This is demo text. </div> <br>
      <button onclick = "display()"> Set Text Decoration </button>
      <script>
         function display() {
            document.getElementById("myText").style.textDecoration = "underline";
            document.getElementById("myText").style.textDecorationColor = "red";
         }
      </script>
   </body>
</html>