使用 js/jquery 更改标题表图像
我正在加载动态操作来更改表头中的图像,在CSS中看起来像这样:
.apexir_WORKSHEET_DATA th {
background: url("../images/report_bg.gif") repeat-x scroll 0 0 #AAAAAA;
}
我已经上传了一个图像,并且使用javascript和jquery我正在这样做:
$('.apexir_WORKSHEET_DATA th').css({'background': '#WORKSPACE_IMAGES#header_image.gif'});
但是使用firebug我看到该图像无法加载,我该如何解决这个问题?
I'm doing a Dynamic Actions on load for changing the image from a table header that in css look like this:
.apexir_WORKSHEET_DATA th {
background: url("../images/report_bg.gif") repeat-x scroll 0 0 #AAAAAA;
}
i have uploaded a image and with javascript and jquery i'm doing this:
$('.apexir_WORKSHEET_DATA th').css({'background': '#WORKSPACE_IMAGES#header_image.gif'});
but with firebug i'm seeing that the image is failing to load, how can i solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您忘记在图像周围放置
url()
。试试这个:不过,还有一些其他的想法:
background
属性,还是只是background-image
?#WORKSPACE_IMAGES#
应该出现在图像名称中吗?这个会被取代吗?You have forgotten to put
url()
around the image. Try this instead:Just some other thoughts, though:
background
property, or justbackground-image
?#WORKSPACE_IMAGES#
be in the image name? Will this be replaced?