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

Làm cách nào để đặt kiểu dòng trong trang trí văn bản bằng JavaScript?


Để đặt loại dòng trong trang trí văn bản, hãy sử dụng textDecorationLine bất động sản. Bạn có thể thử chạy đoạn mã sau để trả về kiểu dòng trong trang trí văn bản bằng JavaScript -

Ví dụ

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