标记:(假设列表中有很多孩子,都具有相同的标记)
<ul class="notifications messages inbox">
<li class=" unread">
<div class="avatar">
<a href="index.php?userid=94"><img alt="" src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/276073_662982570_5177619_n.jpg"> </a>
</div>
<div class="txt">
<a class="userName" href="index.php?userid=94">Jose ignacio bustamante <span class="date"> - 2012-09-07 13:49:59</span></a>
<div>
<a href="messages.php?conversationid=94" class="msj"><span>Esque esto de querer cargar una conversación por defecto... como usuario no ...</span></a>
</div>
</div>
<span data-id="442" class="close">X</span>
</li>
所以我试图<li>
根据 .username 标记值(在其中)过滤这些元素
/* I have used this before, its a :contains modification to handle uppercase */
$.expr[':'].icontains = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
$('body').on('keyup','.filterFriends',function(){
$('.inbox li').hide().filter(':icontains("'+this.value+'")').show();
/* How to apply this icontains selector to $('.inbox li').find('.userName') ?? */
});
这有一个问题,我猜它会检查整个 li,我真的不知道如何在 filter() 函数中选择 .userName 类。
谁能给我看灯?