Hide div with specific class while page is loading

2020-07-24 15:38发布

I want to hide an specific div class while page is loading. The structure is..

<div id ="container">
<div class="project-item tv"></div>
<div class="project-item radio"></div>
<div class="project-item radio"></div>
<div class="project-item tv"></div>
</div>

For example, I want to hide DIV with class radio while page is loading, then show them again after load. Thanks.

4条回答
我想做一个坏孩纸
2楼-- · 2020-07-24 16:12

CSS:

.hidden { display: none; }

HTML:

<div id="blah" class="hidden"><!-- content --></div>

JQUERY:

$(function () {
     $('#blah').removeClass('hidden');
 });
查看更多
一纸荒年 Trace。
3楼-- · 2020-07-24 16:18

Use CSS

hide div using css

div.radio {
    display:none;
}

js

Show div with class radio on DOM ready

$(document).ready(function () {
    $('div.radio').show();
});


Show div with class radio on load

$(window).load(function () {
    $('div.radio').show();
});

Read What is the difference between $(window).load and $(document).ready?

查看更多
倾城 Initia
4楼-- · 2020-07-24 16:18
<style>
 div .radio  {display:none;}
</style>

<div id ="container">
<div class="project-item tv"></div>
<div class="project-item radio"></div>
<div class="project-item radio"></div>
<div class="project-item tv"></div>
</div>

in JS

$().ready(function() {$("div .radio").css("display":"block")});
查看更多
▲ chillily
5楼-- · 2020-07-24 16:31

First, set it's CSS value to display:none

Then, in a Javascript file, the jQuery solution would be to use:

$(document).ready(function() {
     $("#yourdivid").show();
});

$(document).ready() makes sure that the entire DOM is loaded before the code inside the function is executed

查看更多
登录 后发表回答