gpt4 book ai didi

javascript - 获取点击的 li 中第一个 div 的 id

转载 作者:太空狗 更新时间:2023-10-29 15:28:09 24 4
gpt4 key购买 nike

<li class="intro-item">
<a href="...">Something</a>
<div id="bar1"></div>
<div id="bar2"></div>
<div id="bar3"></div>
<div id="bar4"></div>
<div id="bar5"></div>
</li>

我想在点击 li 时获取第一个 div(这里是 bar1)的 ID。还有更多与上面相同的lis。所有这些 lis 也有 CSS 类“intro-item” 当我点击其中的每一个时,我想获得第一个 div 的 id。

思路是这样的

$('li.intro-item').click(function(){
alert($('(this) div:first').attr('id'));// here I can't apply this keyword that's the problem.
});

最佳答案

this 作为上下文传递给 jQuery

$('li.intro-item').click(function () {
alert($('div:first', this).attr('id')); //or $(this).find('div:first')
});

关于javascript - 获取点击的 li 中第一个 div 的 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30862135/

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