查找通过JQuery的eq()找到的项的子项

时间:2011-02-07 18:30:44

标签: javascript jquery find

我正在尝试完成以下操作,但我认为我的语法错误。您是否无法找到使用eq()找到的元素的子元素?

$('.excerpt_expander').click(function(){
    clearInterval(run);
    $(".feature_text_item").eq(item_count).find('.feature_excerpt').hide();
    $(".feature_text_item").eq(item_count).find('.feature_full_text').show();
});

1 个答案:

答案 0 :(得分:1)

对我来说很好:http://jsfiddle.net/nzTFd/