Показать сообщение отдельно
  #6 (permalink)  
Старый 22.05.2017, 16:02
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018

<div class="post">Height is 100px</div>
<div class="post">Height is 200px</div>
<div class="post">Height is 50%</div>
<div class="post">Height is 2em</div>
<div class="post">Height is auto</div>


var heights = [100, '200px', '50%', '2em', 'auto'];

$('.post').each(function(index) {
    var value = heights[index];
    this.style.height = +value ? value + 'px' : value;
});

Последний раз редактировалось ruslan_mart, 22.05.2017 в 16:06.
Ответить с цитированием