Owl Carousel 2从具有特定内容的元素接收项目索引

时间:2015-02-19 10:33:26

标签: javascript jquery owl-carousel

谁能告诉我如何从

元素中具有特定内容的元素接收项目索引?

我的项目看起来像这样:

<div class="item"><img style="position: relative; top: 80px; left: 0px; z-index: 7; width: 27px; height: 27px; opacity: 1!important;" src="someurl" /><img class="thumbimg" style="position: absolute; top: 12px; width: 100%; height: 136px;" src="<?php echo wp_get_attachment_url(get_post_thumbnail_id()) ?>" /><p style="position: relative; top: -25px;"><?php echo get_the_title() ?></p></div>

1 个答案:

答案 0 :(得分:0)

filter()方法可让您指定条件。将从选择中删除与条件不匹配的元素,并将返回匹配的元素。此方法通常用于缩小搜索一组选定元素中的元素的范围。希望这就是你的意思。 :)

$('.item').filter(function() {
    var text = $.trim($(this).find("p").text());
    if(text == "Testing")
    alert("Index = "+($(this).index()+1));
});

小提琴here

<强> FYI

filter