Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 jquery mobile 中有一个嵌套列表。我可以通过设置属性搜索每个嵌套级别
data-role="listview" data-filter="true"
在每个嵌套的。但是如何从顶层搜索整个列表?
我已经尝试添加
data-filtertext=""
嵌套列表中所有的属性...没有成功:(
我想使用“搜索过滤栏”,但我不知道如何将其应用于整个列表!
谢谢,帕特里克
尝试这个:
$('[data-filter="true"]').each(function(){ alert($(this).text()) })