我想将图像的背景大小更改为用户想要的宽度和高度。
我有一个表单,用户可以在其中输入正确的宽度和高度
<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 );
})
我没有收到任何错误,但它也不会改变宽度/高度。