我正在尝试使用 javascript 设置背景图像大小。
我有
var test= document.createElement('div');
test.className = 'test_element';
test.style.backgroundImage = 'url('+image.jpg+')';
如何仅在 Javascript 中设置背景图像?非常感谢!
我正在尝试使用 javascript 设置背景图像大小。
我有
var test= document.createElement('div');
test.className = 'test_element';
test.style.backgroundImage = 'url('+image.jpg+')';
如何仅在 Javascript 中设置背景图像?非常感谢!
您可以使用背景大小属性
test.style.backgroundSize = width+'px '+length+'px';
为什么不使用css?http://jsfiddle.net/DX5KL/1/
img{
z-index:0;
position: absolute;
top: 0px;
left: 0px;
}
尝试test.style.backgroundImage = 'url(' + image + '.jpg)';