使用 js/jquery 更改标题表图像

发布于 2024-11-20 00:19:52 字数 374 浏览 4 评论 0原文

我正在加载动态操作来更改表头中的图像,在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与酒说心事 2024-11-27 00:19:52

您忘记在图像周围放置url()。试试这个:不过

$('.apexir_WORKSHEET_DATA th').css({'background': 'url("#WORKSPACE_IMAGES#header_image.gif")'});

,还有一些其他的想法:

  • 您真的想更改整个 background 属性,还是只是 background-image
  • #WORKSPACE_IMAGES# 应该出现在图像名称中吗?这个会被取代吗?

You have forgotten to put url() around the image. Try this instead:

$('.apexir_WORKSHEET_DATA th').css({'background': 'url("#WORKSPACE_IMAGES#header_image.gif")'});

Just some other thoughts, though:

  • Do you really want to change the whole background property, or just background-image?
  • Should #WORKSPACE_IMAGES# be in the image name? Will this be replaced?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文