gpt4 book ai didi

jquery - 我想在 div 中选择一个当前的 div 并在 jquery 中更改它的背景颜色

转载 作者:行者123 更新时间:2023-12-01 06:45:31 25 4
gpt4 key购买 nike

我有这个 html 内容,我想使用 jquery 将鼠标悬停在其中时更改当前 div 的颜色。

CSS

.content{
background-color:#f1f1f1;
width:100px;
height:100px;
}

HTML

<div class="content">
First
</div>
<div class="content">
Second
</div>
<div class="content">
Third
</div>

我尝试过这段代码,但没有成功。

jQuery

$(document).ready(function () {
var color = $(".content").css("background-color");
$(".content").hover(function () {
$(".content").closest().css("background-color", "#F9FAF4");
}, function () {
$(this).closest().css("background-color", color);
});
});

最佳答案

您可以将脚本缩短为简单的内容:

  $(".content").hover(function() {
$(this).toggleClass("backGround");
});

带有一些CSS:

.backGround {
background-color: #F9FAF4;
}

Here is an example

关于jquery - 我想在 div 中选择一个当前的 div 并在 jquery 中更改它的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29681345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com