如何使用 JavaScript 设置元素周围轮廓的颜色?


若要设置轮廓颜色,请使用outlineColor 属性。你可以尝试运行以下代码,使用 JavaScript 设置元素周围轮廓的颜色

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 450px;
            background-color: orange;
            border: 3px solid red;
         }
      </style>
   </head>
   <body>
      <p>Click below to add Outline Color.</p>
      <div id="box">
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
      </div>
      <br>
      <button type="button" onclick="display()">Set Outline Color</button>
      <br>
      <script>
         function display() {
            document.getElementById("box").style.outline = "thick solid";
            document.getElementById("box").style.outlineColor = "#5F5F5F";
         }
      </script>
   </body>
</html>

更新时间:2020-01-24

107 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告