我对 JSON 和 jQuery 比较陌生。我需要做一个 jQuery 自动完成,为此我放了:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
jQuery(document).ready(function($){
$('#executives').autocomplete({source:'search_executives.php', minLength:2});
});
</script>
在 HTML 中:
<div class="rows">
<div class="labels">Search</div>
<div class="textboxs" style=" width: 175px;"><input id="executives" name="executive" /></div>
</div>
我search_executives.php
的是:
<?php
session_start();
if(empty($_SESSION['userid'])){
header('Location:index.php');
exit();
}
include_once('include/config.php');
$qry = "SELECT employee_id,fname,mname,lname FROM personal_details WHERE deg_id = '1'";
$res = $dbo->executeQuery( $qry ) ;
//$results[] = array('label' => $row['name']);
for( $i = 0; $i < count( $res ); $i++ )
{
$result[] = array( 'label' => $res[$i]['fname'].' '.$res[$i]['mname'].' '.$res[$i]['lname'] , 'value' => $res[$i]['employee_id'] ) ;
}
echo json_encode($result);
?>
现在我的问题是——
- 它输出所有结果,它不依赖于我输入的搜索字符串。
- 它在 HTML 的文本字段中打印
value
(例如 3 )。我需要以employee_id
他的值打印高管的姓名。
注意:第一部分已解决。我忘了添加LIKE
条件SQL
!