我正在尝试将 JQuery Autocomplete 与 PHP 源文件一起使用,但是当我使用 FIREBUG 检查时,我看到输入字段的更改,页面只是重新查询本身而不是调用我的源 PHP 文件
代码段
$().ready(function() {
$("#item_name").autocomplete("./utilities.php?op=autocomplete", {
width: 260,
matchContains: true,
//mustMatch: true,
minChars: 2,
//multiple: true,
//highlight: false,
//multipleSeparator: ",",
selectFirst: false
});
});
PHP 源文件
if($op=='autocomplete'){
$dataset = array();
$item_name = $_REQUEST['item_name'];
if (!$item_name) return;
$sql = "select select concat(item_id,' - ',item_name) item from payment_items where item_name like '%$item_name%'";
//echo $sql;
$result = mysql_query($sql);
if($result){
for($i=0; $i<$numrows; $i++){
$row = mysql_fetch_array($result);
echo $row['item'];
}
}
}
实用程序文件是一个实用程序页面,因此需要定义一个 $op 参数来确定我想要实现的目标。
谢谢您的帮助