jQuery-隐藏表 - >重新加载页面后,我的表显示几秒钟

时间:2015-07-09 11:46:44

标签: javascript jquery html css

我的桌子有问题。我使用jQuery函数.hide()

 $("#table").hide();

这很有效,但是有一个问题。重新加载页面后,我的表会显示几秒钟然后隐藏。 我一直在尝试很多东西,我先把.hide()函数放在列表中,但仍然没有。

我使用了$("#table").css("display", "none"),但我仍有同样的问题。

我该怎么办?

2 个答案:

答案 0 :(得分:1)

您不需要使用jQuery来隐藏加载的内容,只需使用display:none。

#table {
  display: none;
}

要回答你的问题,我将hide()用于$(document).ready(function(){})。因此,在页面完全加载后执行。

答案 1 :(得分:1)

你可以做点什么,

向表添加样式例如,

<table id="table" style="display: none">
  <thead>
    <tr>
      <td>Name</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Thiru</td>
    </tr>
  </tbody>
<table>