你的div的结构是下面这种结构吗?
<div><img>
</div>
如果是的话,你先获取到div,
然后在div里获取img;
var aImg=document.getElementById("div's Id").getElementsByTagName('img')for(var i=0i<aImg.lengthi++){
aImg[i].style.height="the height you want"
aImg[i].style.width="the width you want"
}
如果你所说的图片是指div的background,那么你可以在CSS里面用:
background-size:50px 100px(调整背景图片的大小)background-repeat:no-repeat(是否平铺,否)
/*也可以:*/
background-size:40%100%(对背景图片进行拉伸)
当然用js的话也可以:
img.style.backgroudSize='50px 100px'img.style.backgroudRepeat='on-repeat'
background是全局的背景设置,例如
body {background: #fff url('xxx.png') no-repeat
}
拆分出来就是
body {background-color: #fff
background-image: url('xxx.png')
background-repeat: no-repeat
}
你设置了obj.style.background就覆盖了background-image,所以你要改成这样
obj.style.backgroundImage = 'url("xxx.png")'欢迎分享,转载请注明来源:内存溢出
评论列表(0条)