标题可能会混淆,
我的 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>
提前致谢