$ .height在colorbox中返回0

时间:2013-09-11 16:18:01

标签: javascript jquery height colorbox

我将td的高度设置为auto,并希望将height的{​​{1}}设置为td中的其他td 。这是我的HTML

colorbox

我的身高<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"

我的jquery代码就像这里

id="mhheading"

我在控制台中看到它正在返回 $(document).ready(function () { $('#mhheading').css('height',$('#mhinfo').height()); console.log($('#mhinfo').height()); }); 。我使用了0window.load,但在所有情况下都会返回document.load。我再次使用0中的所有代码。

1 个答案:

答案 0 :(得分: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>

DEMO