Javascript 如何最大化和最小化div

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/11013237/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-24 04:01:25  来源:igfitidea点击:

How to maximize and minimize a div

javascripthtmljavascript-events

提问by Alpana

How to maximize and minimize a div. Can I resize div according to as need.

如何最大化和最小化一个 div。我可以根据需要调整 div 的大小吗?

回答by Miqdad Ali

I think you need something like this

我想你需要这样的东西

http://jsfiddle.net/miqdad/Qy6Sj/1/

http://jsfiddle.net/miqdad/Qy6Sj/1/

You can view the code in jsfiddle here is the code what I have done created a div with another div inside as title bar and content box

您可以在 jsfiddle 中查看代码,这里是我所做的代码,我创建了一个 div,里面有另一个 div 作为标题栏和内容框

html

html

<div id="widnow">
    <div id="title_bar">
        <div id="button">-</div>
    </div>
    <div id="box">
    </div>
</div>

css

css

#widnow{
    width:400px;
    border:solid 1px;
}

#title_bar{
    background: #FEFEFE;
    height: 25px;
    width: 100%;
}
#button{
    border:solid 1px;
    width: 25px;
    height: 23px;
    float:right;
    cursor:pointer;
}
#box{
    height: 250px;
    background: #DFDFDF;
}

jquery

查询

$("#button").click(function(){
    if($(this).html() == "-"){
        $(this).html("+");
    }
    else{
        $(this).html("-");
    }
    $("#box").slideToggle();
});