<body id="page_background">
<a href="" onclick="setAsBackground('http://javascript.ru/forum/images/ca_serenity/misc/logo.gif'); return false;">click</a>
<script>
function setAsBackground(post_img) {
var post_img = post_img;
var img = new Image();
img.src = post_img;
img.onload = function() {
console.log(this.src); //Выводит URL картинки как надо
document.getElementById('page_background').style.backgroundImage = 'url(' + this.src + ')';
};
}
</script>
</body>
Найдите отличие.