Jquery 不改变背景尺寸属性

Jquery not changing background-size attribute

我对此很陌生,很难通过我的代码弄清楚不会执行以下命令

var h = $( window ).height();

$('.bg').css({

    'height' : h,
    'background-size' : "auto" + h

})

更具体地说,背景大小没有改变。高度效果很好,但我希望背景大小看起来如下 background-size: auto 900px (假设它聚集了 900px 作为高度)。

我是不是漏掉了什么?

在此先感谢您。


似乎以下答案有效,但确实需要按如下方式添加 px;

"background-size" : "auto " + h + "px"

谢谢!!!

auto之后添加space:

'background-size' : "auto " + h