在伪CSS中,这看起来像这样:
current_element .text_container {
...
}
我正在试图弄清楚如何使用jQuery做到这一点。有点像:
boxes.each(function() {
console.log( jQuery(this).('.text_container').height() );
});
答案 0 :(得分:1)
$('.mod_article').each(function () {
var maxHeight = 0;
$('div.ce_deeplink div.deeplink_text ', this).each(function () {
if ($(this).height() > maxHeight) maxHeight = $(this).height();
});
$('div.ce_deeplink div.deeplink_text',this).height(maxHeight);
});
<强> jsFiddle example 强>
答案 1 :(得分:1)
答案 2 :(得分:0)
boxes.each(function() {
console.log( $(this).children('.text_container').height() );
});