循环不能在JavaScript中工作?

时间:2012-02-16 11:16:18

标签: javascript html

我想在javascript中使用相同的高度函数,我使用getElementsByName方法来完成它,但它似乎不起作用,我想选择div的最大高度并应用其他具有相同id的div < / p>

                   equl高度函数

<script type="text/javascript">

function equalHeight () {

var get= document.getElementsByName('jj');

for (i=0;i<get.length;i++){

    var m = get[i].offsetHeight;
    alert (m)   

    var n= Math.max(m);




    document.getElementsByName('jj').style.height= n +"px";

}






    }

window.onload = equalHeight;




</script>

</head>

<body>
<div style="margin:0 auto; width:500px;">
<div style="border:solid #F00 1px; float:left; width:150px" name="jj">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>

<div name="jj" style="border:solid #F00 1px; float:right; width:150px">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.

The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</div>



</div>
</body>
</html>

4 个答案:

答案 0 :(得分:1)

问题在于,您获得指定新高度的相同元素的高度。你需要先获得最大高度。然后将其分配给所有div。 JSFiddle Demo

function equalHeight () {
     var divElements = document.getElementsByName('jj'),
         maxHeight = 0,
         i = 0;

     for (i = 0; i < divElements.length; i += 1) {
         maxHeight = divElements[i].offsetHeight > maxHeight ? divElements[i].offsetHeight : maxheight; 
     }

     for (i = 0; i < divElements.length; i += 1) { 
         divElements[i].style.height = maxHeight + 'px';
     }
}

答案 1 :(得分:0)

我认为“equalHeight”功能应该是:

var get = document.getElementsByTagName('div'), 
    maxHeight = 0, i;

for (i = 0; i < get.length; i++) {

    var m = get[i].offsetHeight;
    if (m > maxHeight) {
        maxHeight = m;
    }
}

for (i = 0; i < get.length; i++) {

    get[i].style.height = maxHeight + "px";
}

div不支持name属性,你可以将所有div放在父div中,并给父div一个“id”,就像这样:

<div id="parent_div">
   <div></div>
   <div></div>
</div>

然后得到div:

var get = document.getElementById("parent_div").getElementsByTagName("div");

答案 2 :(得分:0)

试试这个,首先将类名添加到你想要相等的所有div中,即class =“jj”

function equalHeight()
{
    var el=document.getElementsByTagName("div");
    var maxHeight=0;
    for(var i=0;i<el.length;i++)
    {
        if(el[i].className=='jj')
        maxHeight = el[i].offsetHeight > maxHeight ? el[i].offsetHeight : maxHeight; 
    }
    for(var i=0;i<el.length;i++)
    {
        if(el[i].className=='jj')
        el[i].style.height = maxHeight + 'px';
    }
}   
window.onload = equalHeight;

答案 3 :(得分:-1)

for (i=0 ; i<get.length;i++){
    var m = get[i].offsetHeight;
    alert (m)   // your are missing an ; here
    var n= Math.max(m);
    document.getElementsByName('jj').style.height= n +"px";   
}