gpt4 book ai didi

javascript - 将鼠标悬停在 img 上时会显示所有 div

转载 作者:行者123 更新时间:2023-11-28 15:41:36 25 4
gpt4 key购买 nike

我有这个:

$(window).load(function(){
$(".hardware").hover( function (e) {
$(this).toggleClass('hover', e.type === 'mouseenter');
$(".info").fadeIn(500);
});
});

还有我的 html:

<section>
<div class="hardware banner1 top">
<img src="files/images/sakesalverda.png" alt="" class="action"/>
<div class="info">sakesalverda.nl</div>
</div>
</section>

<section>
<div class="hardware banner2">
<img src="files/images/ptsd-monitor.png" alt="" class="action"/>
<div class="info">ptsd-monitor.com</div>
</div>
</section>

但是当您将鼠标悬停在 .hardware.banner1 上时,它将显示两个 div。我只是不想让它显示 banner 中的 div,而不是 banner2 中的 div。

最佳答案

您应该使用:

$(this).find('.info').fadeIn(500);

因为您想要淡入.hardware内的.info,而不是全部。

关于javascript - 将鼠标悬停在 img 上时会显示所有 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23571614/

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