搜索栏模糊查询特效--jquery插件



以下是我在实际工作中给客户做的一个方便搜索的功能:

在工作中我们用的框架是ETP框架不是主流的SS框架(此处只是说明下,并不影响文章的主要内容,目的是为不知道ETP的人扫除阅读障碍),如代码中的

<%
    IndexedCollection dealerInfoIColl = (IndexedCollection) transFlowCtx.getElementAt("dealerInfoIColl");//就是获取一个包含数据的集合dealerInfoIColl ,然后遍历出dealerName 如是而已
  for (int i = 0; i < dealerInfoIColl.size(); i++) {   
   KeyedCollection tempKColl = (KeyedCollection) dealerInfoIColl.getElementAt(i);
   String dealerName = (String) tempKColl.getValueAt("dealerName");
 %>


附代码:


   经销商:
   
  

==========================

<%@ page language="java" contentType="text/html; charset=utf-8" %>
   
 
 
 
 
  

 


另推荐两篇相关博客,以增进理解:http://blog.csdn.net/zhs954838550/article/details/8896965   http://www.cnblogs.com/yuzhongwusan/archive/2012/06/04/2534262.html

你可能感兴趣的:(Jquery)