jquery 的autocomplete做combobox的多选怎么解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 的autocomplete做combobox的多选怎么解决相关的知识,希望对你有一定的参考价值。

参考技术A .ui-autocomplete
max-height: 100px;//高度值
overflow-y: auto; //超过高度出现滚动条
/* prevent horizontal scrollbar */
overflow-x: hidden; //横向超出隐藏,如果要出现横向滚动,设置为auto即可

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete
height: 100px;
本回答被提问者和网友采纳

jquery autocomplete文本自己主动补全

文本自己主动补全功能确实非常有用。

先看下简单的效果:(样式不咋会写)

技术分享

以下介绍几种:
1:jqery-actocomplete.js
这个网上有个写好的实例,上面挺具体的,能够下来执行下就清楚了就不多做解释
地址:http://download.csdn.net/detail/linlinv3/7744717(假设找不到资源留言找我)
2:jquery-ui.js
jquery-ui.js一般系统中用,所以用这个也比較方便。注意引入包的顺序

<link href="jquery/jquery-ui.css" rel='stylesheet' type="text/css"/>
<script type="text/javasrcipt">jquery/jquery-1.7.1.min.js</script>
<script type="text/javasrcipt">jquery/jquery-ui.js</script>

<input type="text" name="address" width="200" />

<script type="text/javasrcipt">
jQuery(function($)){
    $("input[name=address]").autocomplete({
	delay: 100, //延长多少秒激活
	minLength:1, //最小多少个字符触发
	autoFocus:true, //是否选中第一个
	source:function(request,response){
		var data = new Array();
		data.pust("ss");
		//......
		response(data); //在文本中要提示的数据
	}
    
    });

}
</script>

个人比較喜欢用ui的,这个数据动态写入比較方便,能够在var data那写ajax等来去数据啥的。
上面的还能够加改样式
<style>
.ui-autocomplete{
	max-height:300px; //显示框最大高度
	overflow-y:auto;  //竖向滚动栏
	overflow-x:auto;  //横向滚动栏
}
html.ui-autocomplete{
	height:100px; 
}
</style>

样例比較简单个人感觉非常有用。能够亲自己主动手试试,欢迎交流








以上是关于jquery 的autocomplete做combobox的多选怎么解决的主要内容,如果未能解决你的问题,请参考以下文章

JQuery 插件 autocomplete

jquery autocomplete文本自己主动补全

怎么做百度搜索的下拉框?

Jquery AutoComplete的使用方法实例

jquery autoComplete 插件

jQuery.Autocomplete实现自动完成功能(详解)