gpt4 book ai didi

jquery - jquery mobile 中的 ListView 搜索

转载 作者:行者123 更新时间:2023-12-01 01:58:29 24 4
gpt4 key购买 nike

    <ul id='list' data-role='listview' data-filter='true' data-inset='false'>
<li id='a1'>
<h3>ABC</h3>
<p>this is ABC</p>
</li>
<li id='a2'>
<h3>DEF</h3>
<p>DEF is not ABC</p>
</li>
</ul>

例如,

搜索“ABC”,结果是 ABC 和 DEF。

但我不想搜索<p>标签,仅搜索 <h3>标签。

怎么做。

最佳答案

好吧...这是一个开始...

$("#list li").each(function(){

if($(this).
find("h3").
text().toUpperCase().
indexOf(SEARCHWORD.toUpperCase()) >=0)
$(this).show();
else
$(this).hide();

});

See a Demo

关于jquery - jquery mobile 中的 ListView 搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7467633/

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