垂直可折叠面板 - 在负载上显示折叠

时间:2014-02-11 12:51:18

标签: javascript jquery css onload

当页面加载时,如何让<div>已折叠?

到目前为止,我有一个JS Fidle


HTML

<button id="aa">Toggle it up</button>

<div id="test">TEST</div>

CSS

div { 
    background:#0F0; 
    margin:3px; 
    width:600px; 
    height:600px; 
    float:right;
}
div.test { 
    background:#345; 
    width:5px;
}
#aa {width: 100px; 
    height: 600px;
    position: absolute;
    top: 3px;
    right: 0px;
    z-index: 10 
    float: right;
}

JAVASCRIPT

$("#aa").click(function () {
    $("div").animate({width: 'toggle'});;
});

2 个答案:

答案 0 :(得分:3)

<强> CSS

使用css隐藏div

#test{
  display:none;
}

Fiddle Demo


<强>的jQuery

$('#test').hide();

<强>的JavaScript

document.getElementById('test').style.display = 'none';

答案 1 :(得分:2)

<强> CSS

#test{
  display:none;
}

DEMO