gpt4 book ai didi

javascript - 如何在 JQuery 中设置带有变量的 CSS 属性?

转载 作者:搜寻专家 更新时间:2023-10-31 22:27:22 25 4
gpt4 key购买 nike

我需要将 width 的 CSS 属性设置为与浏览器当前宽度相同的大小。为此,我执行了 var setWidth = $(window).width(),但我不知道如何将其应用到我当前的代码中,代码如下所示:

$(document).ready(function(){
$("#backgroundImg").css("width", "");
});

有什么办法吗?我是 JQuery 的新手,所以我可能真的很业余。

最佳答案

试试这个

$(document).ready(function() {
var setWidth = $(window).width();
$("#backgroundImg").css("width", setWidth + 'px');
});

或者您可以使用 $.width

$(document).ready(function() {
$('#backgroundImg').width( $(window).width() )
});

关于javascript - 如何在 JQuery 中设置带有变量的 CSS 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31546807/

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