autocomplete的使用

autocomplete使用分为本地调用方法和读取远程读取数据源的方法

(1)本地调用方法

<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

<link href="Scripts/jquery.autocomplete.css" rel="stylesheet" type="text/css" />

<script src="Scripts/jquery.autocomplete.min.js" type="text/javascript"></script>

<script type="text/javascript">

var emails = [

{ name: "Peter Pan", to: "[email protected]" },

{ name: "Molly", to: "[email protected]" },

{ name: "Forneria Marconi", to: "[email protected]" },

{ name: "Master <em>Sync</em>", to: "[email protected]" },

{ name: "Dr. <strong>Tech</strong> de Log", to: "[email protected]" },

{ name: "Don Corleone", to: "[email protected]" },

{ name: "Mc Chick", to: "[email protected]" },

{ name: "Donnie Darko", to: "[email protected]" },

{ name: "Quake The Net", to: "[email protected]" },

{ name: "Dr. Write", to: "write[email protected]" },

{ name: "GG Bond", to: "[email protected]" },

{ name: "Zhuzhu Xia", to: "[email protected]" }  ];

$(function ()

      {

$(‘#txt‘).autocomplete(emails, {

max: 12,    //列表里的条目数

minChars: 1,    //自动完成激活之前填入的最小字符,如果为0,则双击时显示全部

width: 400,     //提示的宽度,溢出隐藏

scrollHeight: 300,   //提示的高度,溢出显示滚动条

matchContains: true,    //包含匹配,就是data参数里的数据,是否只要包含文本框里的数据就显示

autoFill: false,    //自动填充

formatItem: function (row, i, max)

{

return  row.name;

},

formatMatch: function (row, i, max)

{

return row.name;

},

formatResult: function (row)

{

return row.name;

}

});

});

</script>

<input type="text" id="txt" />

(2)远程调用数据源的方法

后台.js

ViewState["data"]="[{ name: \"Peter Pan\"},{ name: \"Molly\"},{ name: \"Forneria Marconi\"},{ name: \"Don Corleone\"}]";

前台

<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

<link href="Scripts/jquery.autocomplete.css" rel="stylesheet" type="text/css" />

<script src="Scripts/jquery.autocomplete.min.js" type="text/javascript"></script>

<script type="text/javascript">

$(function ()

      {

var data = ‘<%= ViewState["data"] %>‘;

var da = eval(‘(‘ + data + ‘)‘);

$(‘#txt‘).autocomplete(da, {

max: 12,    //列表里的条目数

minChars: 1,    //自动完成激活之前填入的最小字符,如果为0,则双击时显示全部

width: 400,     //提示的宽度,溢出隐藏

scrollHeight: 300,   //提示的高度,溢出显示滚动条

matchContains: true,    //包含匹配,就是data参数里的数据,是否只要包含文本框里的数据就显示

autoFill: false,    //自动填充

formatItem: function (row, i, max)

{

return  row.name;

},

formatMatch: function (row, i, max)

{

return row.name;

},

formatResult: function (row)

{

return row.name;

}

});

});

</script>

<input type="text" id="txt" />

时间: 2024-12-14 18:11:35

autocomplete的使用的相关文章

JQuery UI之Autocomplete(2)

1.Autocomplete获取后台数据 首先引入css和js文件,以及对应的HTML代码如下: <link href="../css/jquery-ui.css" rel="stylesheet" /> <script type="text/javascript" src="../js/jquery-1.9.1.min.js" ></script> <script type=&quo

c#+jquery.autocomplete.js

html代码: $(document).ready(function () { $.ajax({ type: "POST", contentType: "json", url: "a.ashx?action=findlist", data: "{}", dataType: "html", success: function (data) { var dataset = eval('(' + data + '

JQuery UI之Autocomplete(4)多值输入、远程缓存与组合框

1.多值输入 首先加入相关的css和js文件,以及对应的HTML代码如下: <link href="../css/jquery-ui.css" rel="stylesheet" /> <script type="text/javascript" src="../js/jquery-1.9.1.min.js" ></script> <script type="text/java

jq 之Autocomplete 引发联想及思考

前情纪要:JQuery UI 是以 JQuery 为基础的开源 JavaScript 网页用户界面代码库.包含底层用户交互.动画.特效和可更换主题的可视控件,这些控件主要包括:Accordion,Autocomplete,ColorPicker,Dialog,Slider,Tabs,DatePicker,Magnifier,ProgressBar,Spinner等,其中Autocomplete能够非常容易的帮我们实现类似于百度搜索的智能提示功能. 我现在要实现的是在订单中心下单时,实现通过输入客

百度地图之自动提示--autoComplete

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>百度地图之

JQuery 插件 autocomplete

最近有个功能就是对文本框里的内容模糊查询,并出现一个下拉框对模糊查询出来的内容进行选择.最开始写的时候我就想起以前的公司遇到过,用的是rpc(简称人品差),but我已经记不得咋个实现的了,然后各种求助以前的同事.然而他们都不晓得咋个弄了.好吧,咋办呢,我就问旁边的同事有没有遇到过这种类似的功能,怎么做的,早点问也不至于时间白白浪费吧.于是就有了autocomplete.我的知识面不广,所以现在我也尽量在总结,不要笑. 进入主题: 官网地址:api.jqueryui.com/autocomplet

自动完成--autoComplete插件

js下载地址:https://github.com/devbridge/jQuery-Autocomplete 1.引入js,引入css --start--------------------------------------------------------------------------------------------- 1.autoComplete()方法 $(selector).autoComplete(配置对象); 具体使用 配置属性 1) lookup 类型:字符串数组或

JQuery Autocomplete实战

废话不多说,先看效果!~ 需要引入的资源如下 <link rel="stylesheet" href="/css/jquery.autocomplete.css" type="text/css"> <script type="text/javascript" src="/lib/jquery.min.js"></script><!--1.8.3--> <

jquery autocomplete 自动补全

写在前面 autocomplete是jqueryUI里的一个插件 效果和说明可以访问这里,作用类似于搜索时的自动提示: 相信用过jQuery autocomplete 自动补全功能同学有不少,但是往往我们所对应的需求不同,有的仅仅是为了省事,敲两个字就有一堆可供选择的信息可供选择,但并不是所有需求都是这样的,我们还有这样的需求,敲两个字,将这个文字对应的实体绑定出来. 主要的参数 jQuery UI Autocomplete常用的参数有: Source:用于指定数据来源,类型为String.Ar

autocomplete

1 <!doctype html> 2 <html> 3 <style> 4 body { 5 margin-left: 0px; 6 margin-top: 0px; 7 margin-right: 0px; 8 margin-bottom: 0px; 9 } 10 .auto_hidden { 11 width:204px;border-top: 1px solid #333; 12 border-bottom: 1px solid #333; 13 border-