How can I hide an HTML table row so that it takes up no space?

前端 未结 15 986
情歌与酒
情歌与酒 2020-12-25 09:15

How can I hide an HTML table row so that it takes up no space? I have several \'s set to style=\"display:none;\"

15条回答
  •  囚心锁ツ
    2020-12-25 09:56

    var result_style = document.getElementById('result_tr').style;
    result_style.display = '';
    

    is working perfectly for me..

提交回复
热议问题