タイトルがややこしいかもしれませんが、
私はjsの知識が本当に悪いので、これを理解するのに助けが必要です.
<script type="text/javascript">
$(".content_R").css({'height':($(".content_L").height()+'px')});
$("#content_R").height($("#content_L").height() - 10);
var highestCol = Math.max($('#content_R').height(),$('#content_R').height());
$('#content_R').height(highestCol);
</script>
上記のコードは、div column_R を column_L の高さに等しくします。
それは完全に機能しますが、管理リンク
edit-post.php?id='.$row['postID']
複雑な cms エディターが表示されます...スクリプトに影響を与え、100px が短すぎるようです! このスクリプトをフッター (すべてのページにあります) に含めておきたいので、コードを何度も何度も繰り返したくありません。
以下のスクリプトを作成して、ウェブサイトが
edit-post.php?id='.$row['postID']
そして、それがこれである場合、コードを次のように変更します。
<script type="text/javascript">
$(".content_R").css({'height':($(".content_L").height()+'px')});
$("#content_R").height($("#content_L").height() + 100);
var highestCol = Math.max($('#content_R').height(),$('#content_R').height());
$('#content_R').height(highestCol);
</script>
前もって感謝します