单元格行高动态适应BLOB图片的尺寸
debugger;
for (var i = 3; i < $('.x-table tr').length; i++) {
if ($("td").find("div").length > 1) {
var img = new Image();
img.src = $($("td").find("div")).css("backgroundImage").replace('url', '').replace('("', '').replace('")', '');
var h = img.height;
//$("td").html(h);
if (h > 200) {
$("td").height('200');
$($("td").find("div")).removeAttr("style");
$($("td").find("div")).height('200');
$($("td").find("div")).height('200');
} else if (h < 30) {
$("td").height('40');
$($("td").find("div")).removeAttr("style");
$($("td").find("div")).height('30');
$($("td").find("div")).height('30');
} else {
$("td").height(h + '');
$($("td").find("div")).removeAttr("style");
$($("td").find("div")).height(h + '');
$($("td").find("div")).height(h + '');
}
}
}