1. 程式人生 > >利用JS來改變div的高度

利用JS來改變div的高度

eight get block tex font lec textarea style cnblogs

var contextBlockHeight = document.getElementById(‘contextBlock‘).clientHeight;
if ( contextBlockHeight > 430) {
    contextBlockHeight = contextBlockHeight + 50;
    document.getElementById(‘middleContextBlock‘).style.height = contextBlockHeight + "px";
}
<div id="contextBlock" class="mTop5 contextArea fontSize13"
> </div>

利用JS來改變div的高度