gpt4 book ai didi

jquery - 使用 jquery 更改背景大小

转载 作者:行者123 更新时间:2023-12-01 07:09:31 25 4
gpt4 key购买 nike

我想将图像的背景大小更改为用户想要的宽度和高度。

我有一个表单,用户可以在其中输入正确的宽度和高度

   <input type="text" class="form-control input-width input-px" maxlength="2" name="width">PX breed
<input type="text" class="form-control input-height input-px" maxlength="2" name="height">PX hoog

如果输入发生变化,我想将背景大小更改为输入字段的值

      $(".input-px").on("change", function()
{

width = $(".input-width").val()+"px";
height = $(".input-height").val()+"px"

$(".source").css("background-size", width + height );

})

我没有收到任何错误,但它也没有改变宽度/高度。

最佳答案

我认为你应该这样做:

$(".source").css("background-size", width + ', ' + height );

你这样做的方式,你正在计算宽度和高度的总和,在CSS中,背景大小需要2个用逗号分隔的数字。

关于jquery - 使用 jquery 更改背景大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30918696/

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