var height = $("#my").height();
console.log(height);
var height = $(".mymy").get(0).height();
console.log(height);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id='my'>this is some text</div>
<div class='mymy'>class text 1</div>
<div class='mymy'>class <br> text<br> 2</div>
Я могу получить высоту, когда у меня есть идентификатор, но возможно ли получить высоту по имени класса? Подумайте:
<div id='my'>this is some text</div>
var height = $("#my").height();
даст мне высоту элемента. Как это сделать, когда вы получаете элементы по имени класса? учтите:
<div class='mymy'>class text 1</div>
<div class='mymy'>class <br> text<br> 2</div>
var height = $(".mymy").get(0).height()
не работает