0

我正在尝试使用 javascript 设置背景图像大小。

我有

  var test= document.createElement('div');
  test.className = 'test_element';
  test.style.backgroundImage = 'url('+image.jpg+')';

如何仅在 Javascript 中设置背景图像?非常感谢!

4

3 回答 3

1

您可以使用背景大小属性

test.style.backgroundSize = width+'px '+length+'px';
于 2013-04-02T23:32:04.597 回答
0

为什么不使用css?http://jsfiddle.net/DX5KL/1/

img{
    z-index:0;   
    position: absolute;
    top: 0px;
    left: 0px;
}
于 2013-04-02T23:27:16.327 回答
0

尝试test.style.backgroundImage = 'url(' + image + '.jpg)';

于 2013-04-02T23:32:17.817 回答