table.style.width = table.clientWidth + "px"; table.rows[3].style.display = "none";
但是,当您隐藏行时,这可能会导致各列重排.缓解此问题的一种可能方法是向表中添加样式:
table { table-layout: fixed; }