我如何通过JS获得div的高度并将该高度分配给另一个div?

时间:2015-09-04 17:28:07

标签: javascript html height

相当多的头衔。我已经尝试了stackoverflow上的所有内容而没有任何结果

很抱歉,我仍然是stackoverflow的新手,并且不知道如何正确地问一个问题并将其格式化。这是我试过的代码

var firstDivHeight= document.getElementById('#div1').clientHeight; document.getElementById("#div2").style.height = firstDivHeight;

2 个答案:

答案 0 :(得分:0)

计算第一个div高度然后分配给第二个div

function someFunction(){
  document.cookie="username=John Doe";
  }

答案 1 :(得分:0)

我更喜欢使用jQuery,但在Javascript中应该是这样的



var Height = document.getElementById('myDiv').offsetHeight;
var Width = document.getElementById('myDiv').offsetWidth;
var otherdiv=document.getElementById('otherDiv');
otherdiv.style.height=Height+'px';
otherdiv.style.width=Width+'px';
document.write('Height:'+Height+'px');
document.write('Width:'+Width+'px');

<div id="myDiv" style="width:80%;height:70px; background:green">Bla</div>
<div id="otherDiv" style="background:red">ble</div>
&#13;
&#13;
&#13;

文件