我想从另一个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>
任何建议,谢谢。
答案 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');
});
可以进行优化等。