Yet Another Autocomplete

程序名称:Yet Another Autocomplete

授权协议: 未知

操作系统: 跨平台

开发语言: JavaScript

Yet Another Autocomplete 介绍

I created this plugin because I was not happy with any of the other ones. This
plugin will give you simple, clean autocomplete functionality on the selected
text Box.

Here’s the code:

HTML File:

<form id="myform"> <input type="text" name="my_textBox" id="my_textBox" /> </form> <script type="text/javascript"> <!-- $(function() { var data = { fn : 'lookup' }; var options = { min_length : 3, error_responses : [ "No results.", "Too many results." ] }; $("#suggest").suggest("search.PHP", data, options); }); --> </script>

Example server-side PHP script, search.PHP:

`<?PHP
// Prevent caching
header(“Cache-Control: no-cache, must-revalidate”); // HTTP/1.1
header(“Expires: Jan 1, 2000”); // Date in the past
$fn = $_GET[‘fn’];
$allowed_fns = array(‘lookup’);
if (!in_array($fn, $allowed_fns)) { exit; }
print call_user_func($fn);

function lookup() {
$q = valueIfSet($_GET[‘q’]);
$attrs = array(“uid”, “givenname”, “sn”);
$filter = “level03=95C”;
try {
$results = your_ldap_lookup_function($q, $attrs, $filter, true, , 1);
} catch (Exception $e) {
return “Too many results.”;
}
if (count($results) === ) {
return “No results.”;
}
$list = array();
foreach ($results as $result) {
$sn = $result[‘sn’];
$gn = $result[‘givenname’];
$uid = $result[‘uid’];
$name = “$sn, $gn ($uid)”;
array_push($list, $name);
}
return implode(“\n”, $list);
}
?>`

Yet Another Autocomplete 官网

http://plugins.jquery.com/project/YA_AutoComplete

相关编程语言

多功能下拉选择插件 SelectPage 简洁而强大的下拉分...
AutoComplete 是一个 jQuery Mobile 的插件,用于实...
Combogrid 是一个jQuery插件用于为输入框添加高级自...
Autobox2这个jQuery插件,可以用于创建类似于Facebo...
Link Scraper TextBox 是一个文本框的扩展插件,当你...
Awesomplete 超小超好用的超漂亮的 autocomplete 框...