大家好,我遇到了一个 jQuery 问题。有时它会起作用,并给我正确的高度和其他人完全不同的高度。也许它与正在加载的订单有关,或者我只是做错了什么。如果您发现那里有错误或者您会做出什么不同,请您看一下并告诉我吗?我会很感激。它在 Wordpress 站点中,并且在标题中....
<script type="text/javascript">
jQuery(document).ready(function( $ ) {
// boxen gleiche hoehe
if($(window).width() >= 1600) {
$(".home #fb").height($("#homebox").innerHeight(true) + $("#homebox2").innerHeight(true) - 45) +'px';
}
$(".home #twitter, .page-template-homeLayout-php #twitter").height($("#homebox").innerHeight(true) + $("#homebox2").innerHeight(true));
});
$(window).resize(function() {
if($(window).width() >= 1600) {
$(".page-id-1235 #fb").height($("#homebox").innerHeight(true) + $("#homebox2").innerHeight(true) - 45) +'px';
}
$(".home #twitter, .page-template-homeLayout-php #twitter").height($("#homebox").innerHeight(true) + $("#homebox2").innerHeight(true));
});
});
</script>