jquery 更改悬停时的背景图像

发布于 2024-09-19 18:23:04 字数 765 浏览 4 评论 0原文

我有几个要为其生成 css 背景图像的 div。它们会在悬停时发生变化。是的,我知道我可以轻松地在 css 中完成此操作,但需要在 jquery 中完成。

代码:

$(document).ready(function() {
    $('.hoverBox').css('background', 'url(img/box' + id + '.jpg)')  
    $('.hoverBox').hover(function(){
    $(this).css('background', 'url(img/box' + this.id + '_back.jpg)')                      
    },
    function(){
    $(this).css('background', 'url(img/box' + this.id + '.jpg)')                       
    });
});

HTML 是这样的:

<div class="hoverBox" id="benefits">
content</div>
<div class="hoverBox" id="installation">
content</div>
<div class="hoverBox" id="shoponline">
content</div>

这应该很容易,但我似乎无法使它工作。

非常感谢您的帮助! TIA。

I have several divs that I want to generate css background images for. They will change on hover. Yes, I'm aware that I could easily do this in css, but it needs to be done in jquery.

Code:

$(document).ready(function() {
    $('.hoverBox').css('background', 'url(img/box' + id + '.jpg)')  
    $('.hoverBox').hover(function(){
    $(this).css('background', 'url(img/box' + this.id + '_back.jpg)')                      
    },
    function(){
    $(this).css('background', 'url(img/box' + this.id + '.jpg)')                       
    });
});

HTML is like this:

<div class="hoverBox" id="benefits">
content</div>
<div class="hoverBox" id="installation">
content</div>
<div class="hoverBox" id="shoponline">
content</div>

This should be so easy, but I can't seem to make it work.

Assistance would be much appreciated! TIA.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

行至春深 2024-09-26 18:23:04

id 是什么?

是在其他地方定义的一些神秘变量还是您认为从选择器中读取 id 是某种神奇的方式?

我猜你想使用each()来获取id。

What is the id?

Is it some mysterious variable defined somewhere else or do you think the id will be read from the selector is some magical way?

I am guessing you want to use each() to get the id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文