要使用jQuery获取没有ID的动态创建的子元素的高度,您可以使用以下方法:
.height()
方法获取其高度。例如,如果您要获取一个类名为.my-class
的子元素的高度,可以使用以下代码:var height = $('.my-class').height();
console.log(height);
.find()
方法。例如,要在ID为parent-element
的元素中查找子元素,可以使用以下代码:var parent = $('#parent-element');
var childHeight = parent.find('.my-class').height();
console.log(childHeight);
$('button').on('click', function() {
var newElement = $('<div class="my-class">Dynamic content</div>');
$('#parent-element').append(newElement);
var childHeight = newElement.height();
console.log(childHeight);
});
请注意,这些代码示例仅用于演示目的,您可能需要根据您的实际项目需求进行调整。
领取专属 10元无门槛券
手把手带您无忧上云