如何通过 JavaScript 设置元素高度?
使用 高度属性设置元素的高度。你可以尝试运行以下代码,用 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>
广告