gpt4 book ai didi

JQuery:如何在将其声明为 CSS 值之前使该变量为负数?

转载 作者:太空宇宙 更新时间:2023-11-04 03:44:47 25 4
gpt4 key购买 nike

var footerheight = $("footer").height();
$("#body2").css("padding-bottom",footerheight);
$("footer").css("margin-top",footerheight);
$("footer").css("height",footerheight);
$(window).resize(function(){
$("#body2").paddingBottom("auto");
var footerheight = $("footer").height();
$("#body2").css("padding-bottom",footerheight);
$("footer").css("margin-top",footerheight);
$("footer").css("height",footerheight);
});

“footerheight”变量在作为页脚样式的“margin-top”值输入之前需要设为负数。这是怎么做到的?

最佳答案

jQuery.css('key',num) 只接受一个数字。

所以你可以这样做:

var footerheight = -$("footer").height();

关于JQuery:如何在将其声明为 CSS 值之前使该变量为负数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24312938/

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