gpt4 book ai didi

javascript - Jquery - 通过悬停从列表中获取 div 编号

转载 作者:行者123 更新时间:2023-11-29 17:27:51 25 4
gpt4 key购买 nike

如何通过将鼠标悬停在 div 上来获取数字?

HTML

<div id="log"></div>

<div id="myList">

<div class="divHV">One </div>
<div class="divHV">Two</div>
<div class="divHV">3 </div>

<div class="divHV">Blub </div>
<div class="divHV">Peter</div>
<div class="divHV">6 House</div>

<div class="divHV">last one is 7</div>

</div>

JS

$(document).ready(function() {

$('.divHV').hover(function()
{
XX = '';
$('#log').html('This is the div number '+XX+' <br />');

}, function ()
{
$('#log').html('');
});

});

工作示例
http://jsfiddle.net/9R4aC/2/

最佳答案

XX = $(this).index();

但这将从 0 开始,如果需要,您可以添加 +1..

http://jsfiddle.net/9R4aC/2/

关于javascript - Jquery - 通过悬停从列表中获取 div 编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7121429/

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