gpt4 book ai didi

javascript - 鼠标悬停时如何更改段落文本?

转载 作者:行者123 更新时间:2023-11-28 00:58:29 26 4
gpt4 key购买 nike

当悬停在第二个 div 上时,如何更改第二个段落的值?使用类而不使用 ID它应该检测到它以某种方式悬停的那个,或者至少我是这么认为的。

.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute; /* Position the tooltip */
z-index: 1;
}

.tooltip:hover .tooltiptext {
visibility: visible;
}
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>

<p>Move the mouse over the text below:</p>
<div class="tooltip">Hover over me
<span class="tooltiptext">
<p class=radio> Here is some data </p>
</span>
</div>
<br>
<div class="tooltip">Hover over me
<span class="tooltiptext">
<p class=radio> Here is some data </p>
</span>
</div>

最佳答案

呃,你的问题不清楚...但是,我试试...

<div class="tooltip">Hover over me
<span class="tooltiptext">
<p class="radio textchange"> Here is some data </p>
</span>
</div>

和js

<script>
$(".textchange").on('mouseenter',function (){ //change text here })
</script>

我没试过,我按照我的想法写的

关于javascript - 鼠标悬停时如何更改段落文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52813662/

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