Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在显示一个从 Web 服务调用中检索到的 100 行的表。然后我打电话$(".footable").footable();但是在每一页上,在应用样式之前,未设置样式的表格都在闪烁。
$(".footable").footable();
请帮我解决这个问题。
经过多天的研究,我终于找到了解决这个问题的方法。
display:none不起作用,因为它隐藏了一个元素,并且不会占用任何空间。该元素将被隐藏,页面将显示为好像该元素不存在一样。
display:none
但是问题通过给予解决了visibility: hidden;
visibility: hidden;
参考:http ://www.w3schools.com/css/css_display_visibility.asp
您可以使用 CSS 属性 'display:none' 隐藏表格,直到页面被加载。