我将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());
});
。我使用了0
和window.load
,但在所有情况下都会返回document.load
。我再次使用0
中的所有代码。
答案 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>