ComboBox 控件可以下拉选择也可以手动填写数据,带数据提示自动完成
JavaScript Code
- <script type="text/javascript">
- var comboBox = null;
- Event.observe(document, 'dom:loaded', function() {
- comboBox = new MY.ComboBox({
- input : 'manufacturerDesc',
- url : '../546/get_manufacturers_list.php',
- initialText : 'Select a name',
- parameters : {},
- getParameters: function() {
- var params = {test : 'hola'};
- return params;
- }
- });
- });
- </script>
XML/HTML Code
- <label for="manufacturerDesc">Choose a name:</label> <input type="text" id="manufacturerDesc" size="40">
原文地址:http://www.freejs.net/article_biaodan_547.html