Yet Another Autocomplete
- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://plugins.jquery.com/project/YA_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);
}
?>
软件开发者路线图
Dave H. Hoover、Adewale Oshineye / 王江平 / 机械工业出版社 / 2010年9月 / 35.00元
作为一名软件开发者,你在奋力推进自己的职业生涯吗?面对今天日新月异和不断拓展的技术,取得成功需要的不仅仅是技术专长。为了增强专业性,你还需要一些软技能以及高效的学习技能。本书的全部内容都是关于如何修炼这些技能的。两位作者Dave Hoover和Adewale Oshineye给出了数十种行为模式,来帮你提高主要的技能。 本书中的模式凝结了多年的调查研究、无数次的访谈以及来自O’Reilly在......一起来看看 《软件开发者路线图》 这本书的介绍吧!
