0

我正在尝试将 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 参数来确定我想要实现的目标。

谢谢您的帮助

4

2 回答 2

0
$("#item_name").autocomplete("/utilities.php?op=autocomplete", 
{
  width: 260,
    matchContains: true,
    //mustMatch: true,
    minChars: 2,
    //multiple: true,
    //highlight: false,
    //multipleSeparator: ",",
    selectFirst: false
}).result(function(event, data, formatted) {
// your built function call
  myDefinedFunction(data);

 // update with another result
 $(this).val('your value');

})

如文档:http ://docs.jquery.com/Plugins/Autocomplete/result#handler

于 2012-05-14T14:46:59.403 回答
0

尝试删除“。”

$("#item_name").autocomplete("/utilities.php?op=autocomplete", {

那么它应该请求 PHP 页面而不是它本身。

于 2012-05-14T14:26:58.587 回答