如何使用JavaScript设置元素的高度?

使用height属性设置元素的高度。您可以尝试运行以下代码以使用JavaScript设置按钮的高度-

示例

<!DOCTYPE html>
<html>
   <body>
      <h1>Heading 1</h1>
      <p>This is Demo Text.</p>
      <button type="button" id="myID" onclick="display()">Update Height</button>
      <script>
         function display() {
            document.getElementById("myID").style.height = "100px";
         }
      </script>
   </body>
</html>
猜你喜欢