我在获取 div 的背景 url 时遇到问题
HTML:
<div id='test'></div>
CSS:
#test { position:absolute; height:55px; width:85px; top:554px; left:197px; background:url('images/1.jpg'); }
当我尝试使用下面的获取背景图片 url 时,它显示为空白。
alert(document.getElementById("test").style.backgroundImage);
但有趣的是它适用于以下
document.getElementById("test").style.backgroundImage="url('images/1.jpg')";
alert(document.getElementById("test").style.backgroundImage);
注意: url 没有问题,因为图像显示正确