Mam komplet div
elementów. W jQuery
, chciałbym móc dowiedzieć się, div
jaka jest maksymalna wysokość, a także wysokość div
. Na przykład:
<div>
<div class="panel">
Line 1
Line 2
</div>
<div class="panel">
Line 1<br/>
Line 2<br/>
Line 3<br/>
Line 4<br/>
</div>
<div class="panel">
Line 1
</div>
<div class="panel">
Line 1
Line 2
</div>
</div>
Patrząc na powyższe, wiemy, że druga div
(z 4 liniami) ma maksymalną wysokość ze wszystkich. Jak się tego dowiedzieć? Czy ktoś mógłby pomóc?
Do tej pory próbowałem:
$("div.panel").height()
która zwraca wysokość 1st div
.
Opublikowany przez Ciebie kod HTML powinien zawierać niektóre
<br>
z nich, aby faktycznie mieć elementy div o różnych wysokościach. Lubię to:<div> <div class="panel"> Line 1<br> Line 2 </div> <div class="panel"> Line 1<br> Line 2<br> Line 3<br> Line 4 </div> <div class="panel"> Line 1 </div> <div class="panel"> Line 1<br> Line 2 </div> </div>
Poza tym, jeśli chcesz mieć odniesienie do div o maksymalnej wysokości, możesz to zrobić:
var highest = null; var hi = 0; $(".panel").each(function(){ var h = $(this).height(); if(h > hi){ hi = h; highest = $(this); } }); //highest now contains the div with the highest so lets highlight it highest.css("background-color", "red");
źródło
.height
w tym przypadku), musisz ją wyprowadzić, np: `$ (this) [0] .scrollHeight;`Jeśli chcesz użyć ponownie w wielu miejscach:
var maxHeight = function(elems){ return Math.max.apply(null, elems.map(function () { return $(this).height(); }).get()); }
Następnie możesz użyć:
maxHeight($("some selector"));
źródło
function startListHeight($tag) { function setHeight(s) { var max = 0; s.each(function() { var h = $(this).height(); max = Math.max(max, h); }).height('').height(max); } $(window).on('ready load resize', setHeight($tag)); } jQuery(function($) { $('#list-lines').each(function() { startListHeight($('li', this)); }); });
#list-lines { margin: 0; padding: 0; } #list-lines li { float: left; display: table; width: 33.3334%; list-style-type: none; } #list-lines li img { width: 100%; height: auto; } #list-lines::after { content: ""; display: block; clear: both; overflow: hidden; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <ul id="list-lines"> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_sddu7-2560x1600.jpg" alt="" /> <br /> Line 1 <br /> Line 2 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_mixwall66-2560x1600.jpg" alt="" /> <br /> Line 1 <br /> Line 2 <br /> Line 3 <br /> Line 4 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_sddu7-2560x1600.jpg" alt="" /> <br /> Line 1 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_mixwall66-2560x1600.jpg" alt="" /> <br /> Line 1 <br /> Line 2 </li> </ul>
źródło
ul, li { list-style: none; margin: 0; padding: 0; } ul { display: flex; flex-wrap: wrap; } ul li { width: calc(100% / 3); } img { width: 100%; height: auto; }
<ul> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_sddu7-2560x1600.jpg" alt=""> <br> Line 1 <br> Line 2 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_mixwall66-2560x1600.jpg" alt=""> <br> Line 1 <br> Line 2 <br> Line 3 <br> Line 4 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_sddu7-2560x1600.jpg" alt=""> <br> Line 1 </li> <li> <img src="http://img2.vetton.ru//upl/1000/346/138/vetton_ru_mixwall66-2560x1600.jpg" alt=""> <br> Line 1 <br> Line 2 </li> </ul>
źródło
Spróbuj sprawdzić wysokość div i ustawić wysokość div (podobne do tego, które opublikował Matt, ale używa pętli)
źródło
Jeśli byłeś zainteresowany sortowaniem w całości w standardowym JavaScript lub bez użycia forEach ():
var panels = document.querySelectorAll("div.panel"); // You'll need to slice the node_list before using .map() var heights = Array.prototype.slice.call(panels).map(function (panel) { // return an array to hold the item and its value return [panel, panel.offsetHeight]; }), // Returns a sorted array var sortedHeights = heights.sort(function(a, b) { return a[1] > b[1]});
źródło
Najłatwiej i najjaśniej powiedziałbym:
var maxHeight = 0, maxHeightElement = null; $('.panel').each(function(){ if ($(this).height() > maxHeight) { maxHeight = $(this).height(); maxHeightElement = $(this); } });
źródło
Może to być w jakiś sposób pomocne. Naprawianie kodu z @diogo
$(window).on('load',function(){ // get the maxHeight using innerHeight() function var maxHeight = Math.max.apply(null, $("div.panel").map(function () { return $(this).innerHeight(); }).get()); // Set the height to all .panel elements $("div.panel").height( maxHeight ); });
źródło