在伪 CSS 中,这看起来像这样:
current_element .text_container {
...
}
我试图弄清楚如何用 jQuery 做到这一点。类似于以下内容:
boxes.each(function() {
console.log( jQuery(this).('.text_container').height() );
});
在伪 CSS 中,这看起来像这样:
current_element .text_container {
...
}
我试图弄清楚如何用 jQuery 做到这一点。类似于以下内容:
boxes.each(function() {
console.log( jQuery(this).('.text_container').height() );
});
奇怪,我今天早些时候有一个与此非常相似的问题。无论如何,试试这个:
$('.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);
});
boxes.each(function() {
console.log( $(this).children('.text_container').height() );
});