适用于某些浏览器但不适用于Chrome! 不得不包括一个丑陋的最小高度! 即使onload失败,在Chrome上,窗口调整大小也能正常工作! 好像转载过早发生了。
使用js:
function resizeItemDiv()
{
var imgHeight=jQuery('.iw_itemImageBlock').first().height();
var paddingTop = parseInt(jQuery('.iw_itemIntroText').first().css("padding-top"));
var paddingBottom = parseInt(jQuery('.iw_itemIntroText').first().css("padding- bottom"));
var marginBottom = parseInt(jQuery('.iw_itemIntroText').first().css("margin-bottom"));
var newHeight = imgHeight - paddingTop - paddingBottom - marginBottom;
jQuery('.iw_itemIntroText').css("height", newHeight);
return false;
}
jQuery(window).load(resizeItemDiv);
jQuery(window).resize(resizeItemDiv);
参见页面:
但是它可以正常使用