相当多的头衔。我已经尝试了stackoverflow上的所有内容而没有任何结果
很抱歉,我仍然是stackoverflow的新手,并且不知道如何正确地问一个问题并将其格式化。这是我试过的代码
var firstDivHeight= document.getElementById('#div1').clientHeight;
document.getElementById("#div2").style.height = firstDivHeight;
答案 0 :(得分:0)
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;
文件