<!DOCTYPE html>
<html>
<head>
<meta charset="windows-1251" />
<style>
.foo{background: url(http://javascript.ru/img/ws_2.png) no-repeat}
</style>
</head>
<body>
<div class="foo" id="foo" style="width: 100px; height: 100px; "></div>
<script>
d=document.querySelector("#foo")
getStyle=function(el, prop){
return window.getComputedStyle ? getComputedStyle(el)[prop] : el.currentStyle [prop]
}
alert(getStyle(d, "backgroundImage"))
</script>
</body>
</html>
Кроссбраузерное, вроде, даже для ie8, работает