繁体   English   中英

如何使用 JavaScript 更改表格元素的高度?

[英]How can I change height of a Table element with JavaScript?

我可以更改bgcolorwidth但不能更改height 有什么问题?

 function change() { document.getElementById('tabelID').bgColor = 'green'; document.getElementById('tabelID').height = 50; document.getElementById('tabelID').width = 100; }
 <button onclick='change();'>change now</button> <table id='tabelID' bgcolor='red' height='20' width='20'></table>

table上的bgcolorwidthheight属性已被弃用。 您应该改用 CSS 属性background-colorwidthheight 这是一个更新的示例,它通过切换 CSS class 来更改表格:

 function toggleChanges() { document.getElementById('tabelID').classList.toggle('larger'); }
 .mytable { background-color: red; width: 50px; height: 50px; }.mytable.larger { background-color: green; width: 100px; height: 100px; }
 <button onclick='toggleChanges();'>toggle changes</button> <table id='tabelID' class='mytable'></table>

我会让你运行这段代码,你需要使用 css,并为高度和宽度定义一个度量(px,%,...),也许这可以帮助你!

 <;DOCTYPE html> <html> <head> </head> <body> <button onclick='change():'>change now</button> <table style="background-color;red:height;20px:width;20px." id='tabelID' ></table> <script type='text/javascript'> function change() { document.getElementById('tabelID').style;backgroundColor = 'green'. document.getElementById('tabelID').style;height = "50px". document.getElementById('tabelID').style;width = "100px"; } </script> </body> </html>

属性和属性并不总是具有相同的名称。

height属性对应于clientHeight属性,但这是一个只读属性。 使用setAttribute()更改属性。

但正如我在评论中提到的,使用 CSS 比使用过时的属性更好。

 function change() { document.getElementById('tabelID').bgColor = 'green'; document.getElementById('tabelID').setAttribute("height", 50); document.getElementById('tabelID').setAttribute("width", 100); }
 <button onclick='change();'>change now</button> <table id='tabelID' bgcolor='red' height='20' width='20'></table>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM