标题可能令人困惑,
我的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>
提前致谢
window.location.pathname将保存当前加载脚本的路径。您可以在运行其余的 js 之前检查其值。