gpt4 book ai didi

jquery - 当页面宽度小于960px时,使用jquery更改高度

转载 作者:行者123 更新时间:2023-12-01 02:59:37 24 4
gpt4 key购买 nike

当页面宽度小于960px时如何使用jquery改变元素的高度

这是我尝试过的:

$(document).ready(function() {

if ( $(window).width() < 960) {
$('menu').animate({height:'60px'});
}
else {
$('menu').animate({height:'40px'});
}

});

但它仅在刷新页面时才起作用,并且我希望在页面加载后重新调整页面大小时它才起作用。

最佳答案

 $('menu').animate({height:'60px'});
^^^^
here is the error if menu is `id` than should be `#menu` if `class` than `.menu`

菜单标签浏览器支持

enter image description here

关于jquery - 当页面宽度小于960px时,使用jquery更改<menu>高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12549965/

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