在所有jQuery加载后应该加载站点?怎么样?

时间:2022-09-12 19:15:43

In my website, I made many elements hidden initially using jQuery like .hide() etc. But the problem is at the very beginning of page load that hidden elements are showing until all other jQuery loads. I want to show my site after loading all jquerys without using any preloader plugin.

在我的网站中,我最初使用像.hide()等jQuery隐藏了许多元素。但问题是在页面加载的最开始,隐藏元素显示,直到所有其他jQuery加载。我想在不使用任何预加载器插件的情况下加载所有jquerys后显示我的网站。

1 个解决方案

#1


2  

You can do that 2 ways:

你可以这两种方式:

first (and the best):

第一(也是最好的):

add display:none; with css to this hidden items.

add display:none;用css来隐藏这些物品。

second:

document.body.style.display = 'none';

at top of your file

在您的文件顶部

#1


2  

You can do that 2 ways:

你可以这两种方式:

first (and the best):

第一(也是最好的):

add display:none; with css to this hidden items.

add display:none;用css来隐藏这些物品。

second:

document.body.style.display = 'none';

at top of your file

在您的文件顶部