1

我正在设置tdas的高度,auto并希望将heighttd设置为其他tdin colorbox。这是我的html

<tr>
    <td class="heading1" id="mhheading"><?php echo $this->translate("Medical History"); ?> </td>
    <td class="info1" style="height:auto;" id="mhinfo"><?php echo $this->patientDetail['medical_history'];?></td></tr>

我的身高越来越高,id="mhinfo"想坐进去id="mhheading"

我的 jquery 代码就像这里

  $(document).ready(function () {
    $('#mhheading').css('height',$('#mhinfo').height());
    console.log($('#mhinfo').height());
});

我在控制台中看到它正在返回0。我用过window.loaddocument.load但在所有情况下它都在返回0。我再次在colorbox.

4

1 回答 1

0

你有表格标签吗?我认为您需要添加表格标签

<table>
<tr>
    <td class="heading1" id="mhheading"><?php echo $this->translate("Medical History"); ?> </td>
    <td class="info1" style="height:auto;" id="mhinfo"><?php echo $this->patientDetail['medical_history'];?></td>
</tr>
</table>

演示

于 2013-09-11T22:10:05.313 回答