如何根据输入字段过滤列表?
我有一个 JSF 2.0 应用程序,带有一个基本搜索栏,其中包含在 keyup
上更新的联系人列表,以便仅显示与搜索栏中的文本匹配的值。
<h:panelGroup id="contacts_tab_contacts_list">
<h:form id="search_bar_form">
<h:panelGroup id="contacts_tab_search_bar">
<h:inputText id="search_bar_text"/>
</h:panelGroup>
</h:form>
<c:forEach items="#{currentDevice.contacts}" var="contact">
<li>
<h:panelGroup id="contact_#{contact.phoneNumber}">
<h:outputText value="#{contact.phoneNumber}" />
</h:panelGroup>
</li>
</c:forEach>
</h:panelGroup>
我希望它能够很快,所以我想用 JavaScript/jQuery 来实现它。 我是 JavaScript/jQuery 世界的新手,所以我需要一些帮助。 我怎么能这样做呢?
I have a JSF 2.0 application with a basic search bar with a list of contacts that is updated on keyup
so that only the values that match the text in the search bar are displayed.
<h:panelGroup id="contacts_tab_contacts_list">
<h:form id="search_bar_form">
<h:panelGroup id="contacts_tab_search_bar">
<h:inputText id="search_bar_text"/>
</h:panelGroup>
</h:form>
<c:forEach items="#{currentDevice.contacts}" var="contact">
<li>
<h:panelGroup id="contact_#{contact.phoneNumber}">
<h:outputText value="#{contact.phoneNumber}" />
</h:panelGroup>
</li>
</c:forEach>
</h:panelGroup>
I would like it to be fast so I want to implement it with JavaScript/jQuery.
I'm new to the JavaScript/jQuery world, so I could use a little help with this.
How could I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按如下方式更新视图(添加
,使用
而不是
,删除一些不必要的
来最大程度地减少噪音,
也不是必需的,因为没有任何内容需要提交到服务器side)并使用此脚本来过滤列表:
Update the view as follows (added
<ul>
, used<ui:repeat>
instead of<c:forEach>
, removed some unnecessary<h:panelGroup>
s to minimize noise, the<h:form>
is also not necessary since there's nothing which needs to be submitted to the server side)And use this script to filter the list:
为什么要重新发明轮子RichFaces 已经提供了这个
why to re invent the wheel RichFaces already provide this