1

私はtdasの高さを設定しており、それを の他のものに設定したいとauto考えています。これが私のhtmlですheighttdtdcolorbox

<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。andを使用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 に答える