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

Làm thế nào để thiết lập màu đường viền với JavaScript?

Để đặt màu đường viền, hãy sử dụng outlineColor thuộc tính trong JavaScript. Bạn có thể thử chạy mã sau để tìm hiểu cách triển khai outlineColor tài sản -

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
      #box {
         border: 2px solid red;
      }
      </style>
   </head>
   
   <body>
      <div id = "box">
         Demo Content
      </div>
      <br>
      
      <button type = "button" onclick = "display()">Change outline color</button>
      <script>
         function display() {
            document.getElementById("box").style.outlineColor = "#FF5733";
            document.getElementById("box").style.outline = "2px solid";
         }
      </script>
   </body>
</html>