使用jquery从其他页面加载背景图像?

时间:2011-02-25 14:36:00

标签: jquery

我想从另一个ajax页面加载背景图片,我不确定最好的方法是什么?

在我的index.html页面中,我有css后台代码,我想从另一个asp页面加载图像。

我现在查看的index.html文件:

<div id="bgimage" style="background-image: url(../images/theimage.jpg); background-repeat: no-repeat; background-position: center center; background-attachment:fixed;">

以及从db获取正确图像的imagepage.asp页面。

<div id="menuimage">
<img src="..user_images/<%=folderName%>/menuimage/<%=rs("big_image")%>" id="themenyimage"/>
</div>

任何建议,谢谢。

1 个答案:

答案 0 :(得分:0)

的内容
var temp_div = $('<div></div>');
temp_div.load('path.asp #menuimage', function() {
    $('#bgimage').css('background-image', temp_div.find('img').first().attr('src');
});

可以进行优化等。