Change height on div with javascript

前端 未结 4 1112
遥遥无期
遥遥无期 2021-01-29 15:28

I want to set the height on a div when the div is more than 100px in height.

For example, when the content of the div makes the div\'s height fill more than 100px, I wan

4条回答
  •  臣服心动
    2021-01-29 16:24

    You can try

    if($("divID").height() > 100){
        $("divID").css("height","200px");
    }
    

提交回复
热议问题