首页>>表单>>ComboBox 控件可以下拉选择也可以手动填写数据,带数据提示自动完成(2016-04-15)

ComboBox 控件可以下拉选择也可以手动填写数据,带数据提示自动完成

 本例是《autocompleter 自动完成提示填写input》的扩展

使用相同的js文件

 

ComboBox 控件可以下拉选择也可以手动填写数据,带数据提示自动完成
赞赏支持
立刻微信赞赏支持 关闭

 

JavaScript Code
  1. <script type="text/javascript">  
  2.         var comboBox = null;  
  3.         Event.observe(document, 'dom:loaded'function() {  
  4.             comboBox = new MY.ComboBox({  
  5.                 input : 'manufacturerDesc',  
  6.                 url : '../546/get_manufacturers_list.php',  
  7.                 initialText : 'Select a name',  
  8.                 parameters : {},  
  9.                 getParameters: function() {  
  10.                     var params = {test : 'hola'};  
  11.                     return params;  
  12.                 }  
  13.             });  
  14.         });  
  15.     </script>  
XML/HTML Code
  1. <label for="manufacturerDesc">Choose a name:</label> <input type="text" id="manufacturerDesc" size="40">  

 


原文地址:http://www.freejs.net/article_biaodan_547.html