我想在点击li时得到第一个div的id(这里是bar1).并且还有更多与上述相同的信息.所有那些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.
});
最佳答案
将此作为上下文传递给jQuery
原文链接:https://www.f2er.com/css/427646.html$('li.intro-item').click(function () {
alert($('div:first',this).attr('id')); //or $(this).find('div:first')
});