最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Showinghiding div onload - Stack Overflow

programmeradmin2浏览0评论

So I have a class of div's that i want to be shown or hidden depending on a variable i get.

I have this code:

**HTML**

<div class="div_estado" >

    testing that
</div>

<div class="div_estado" >

    testing this
</div>

**JS**

$(document).ready(function(){
var estado= 4; //instead of 4 i have "<?php echo $_GET['estado']; ?>" but let's supose its' value is 4
        if (parseInt(estado)==5) 
        {                       
            $('.div_estado').show; // not working
        }
        else {
            $('.div_estado').hide; // not working
        }
});

However it doesn't work properly, can you help me solve this?

DEMO

So I have a class of div's that i want to be shown or hidden depending on a variable i get.

I have this code:

**HTML**

<div class="div_estado" >

    testing that
</div>

<div class="div_estado" >

    testing this
</div>

**JS**

$(document).ready(function(){
var estado= 4; //instead of 4 i have "<?php echo $_GET['estado']; ?>" but let's supose its' value is 4
        if (parseInt(estado)==5) 
        {                       
            $('.div_estado').show; // not working
        }
        else {
            $('.div_estado').hide; // not working
        }
});

However it doesn't work properly, can you help me solve this?

DEMO

Share Improve this question asked Jul 4, 2013 at 9:06 Correia JPVCorreia JPV 6103 gold badges10 silver badges25 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 4

hide and show are methods, not properties. The syntax for invoking a JavaScript function requires a set of parentheses after the function name.

$('.div_estado').show();

$('.div_estado').hide();

Updated JSFiddle

FIDDLE

You should use "show()" and not just "show". Check the jQuery API info here.

$(document).ready(function(){
var estado= 4; //instead of 4 i have "<?php echo $_GET['estado']; ?>" but let's supose its' value is 4
        if (parseInt(estado)==5) 
        {                       
            $('.div_estado').show(); // not working
        }
        else {
            $('.div_estado').hide(); // not working
        }
});

You are forgetting () . It is a function not a property. Please change it to...

$('.div_estado').show();

...

$('.div_estado').hide();

You are simply missing brackets, it is show() and hide().

Use CSS to hide div

div.radio {
    display:none;
}

IN JS Show div on load

$(document).ready(function () {
    $('div_estado').show();
});
发布评论

评论列表(0)

  1. 暂无评论