gpt4 book ai didi

javascript - 认识 body 的宽度和高度

转载 作者:行者123 更新时间:2023-11-30 10:47:38 33 4
gpt4 key购买 nike

我需要一个小脚本来执行此操作:

if(// window body Height is less then 660px) {
// code to be executed if condition is true
}
else {
// code to be executed if condition is false
}

希望有一个简单的解决方案!

编辑:

我现在有这个:

$(document).ready(function(){  

if(parseInt($('body').height())<660){
$("#container").addClass("small");
}
else{
$("#container").removeClass("small");
}
});

但它不起作用,有人知道我做错了什么吗?

最佳答案

if(parseInt($('body').height())<660){

}else{

}

我认为 height() 和 width() 会返回整数,但肯定是更好的 parseInt。


如果你不想使用jquery

if(document.getElementsByTagName('body')[0].offsetHeight<660){

}else{

}

应该可以。

关于javascript - 认识 body 的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7313251/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com