【发布时间】:2021-05-06 00:16:15
【问题描述】:
我可以更改bgcolor 和width,但不能更改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>
【问题讨论】:
-
您应该使用 CSS 而不是过时的表格属性。
标签: javascript html css dom height