gpt4 book ai didi

jquery - 悬停元素 A,显示/隐藏元素 B

转载 作者:行者123 更新时间:2023-11-30 23:49:16 24 4
gpt4 key购买 nike

我有一个<div>包含图像的元素。在该 div 内,我有一个 <p>包含有关图像的一些信息的元素。我想将鼠标悬停在 <div>包含图像,然后显示或隐藏 <p>元素。

<div class="box">
<img src="img/an_039_AN_diskette.jpg" width="310px" height="465px" />
6 Pharma IT
<p class="hoverbox">some information</p>
</div>

在 jQuery 中有没有简单的方法可以做到这一点?

最佳答案

以下内容将匹配您的所有图像,并定位具有标签 P 的第一个同级图像。

<script type="text/javascript">
$(document).ready(function(){
$("div.box img").hover(
function(){$(this).siblings("p:first").show();},
function(){$(this).siblings("p:first").hide();}
);
});
</script>

<div class="box">
<img src="somefile.jpg" />
<p>This text will toggle.</p>
</div>

关于jquery - 悬停元素 A,显示/隐藏元素 B,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1119956/

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