可输入的下拉列表(带搜索功能)





Editable listbox



 

 


 

 

 


   
     
     
   
   
     
     
   
   
     
   
 
Mail To:
Mail Cc:
     



 


----------------------------
对于从数据库调下拉列表内容的方法,只需替换
var tofieldListArray=[<%
   UserAuthInte uAInte = new UserAuthInte();
   List funcList = uAInte.getAllFuncModels();
   Iterator ite = funcList.iterator();
   while (ite.hasNext() ) {
   FuncModel funcM = (FuncModel) ite.next();
   out.println("/""+funcM.getFunctionName()+"/",");
  }%>];
var ccfieldListArray=tofieldListArray;



对于接受该下拉列表值,可用
 String tofield = new String(request.getParameter("To").getBytes("ISO8859_1"),"GBK");
用name而不是ID。

你可能感兴趣的:(技术专栏)