隐藏id的Ajax jquery自动完成

时间:2017-08-31 10:09:12

标签: javascript php jquery mysql ajax

我有一个mysql表client

client_id client_address client_name

我正在使用js自动填充,它会根据所选输入返回值client_address

使用的标签为addressname,带回的值为client_address。我已经在使用select回调在另一个显示html表的ajax脚本中使用ui

<script type="text/javascript">
$(function() {
 $( "#clientsearch" ).autocomplete({
  source: 'backend_search_addressWT.php',
  minLength: 2, 
  select: function(event, ui) {
    showUser(ui.item.value)
    }
 });
});
</script>

backend_search_addressWT.php:

<?php
    require_once 'config.php';

    //get search term
    $searchTerm = $_GET['term'];

    //get matched data from skills table
    $query = $mysqli->query("SELECT * FROM client WHERE client_address LIKE '%".$searchTerm."%'");
    while ($row = $query->fetch_assoc()) {
        $data[] = array (
            'label' => $row['client_address'].' - '.$row['client_name'],
            'value' => $row['client_address'],
            );
    }

    //return json data
    echo json_encode($data);
?>

我想要做的是获取所选客户端的client_id,将其作为表单中的隐藏变量提交。

如何将client_id作为单独的值返回?我尝试在数组中添加value2,然后使用select函数:

select: function(event, ui) {
        showUser(ui.item.value),
        $('#hiddenID').ui.item.value2
        }

但这似乎摒弃了自动完成。我应该将它添加到标签然后尝试拆分吗?

我查看了Get value in jquery autocomplete,但我已经在使用select

1 个答案:

答案 0 :(得分:0)

不要使用逗号(,)使用;因为你在函数内部编写代码。尝试如下。

select: function(event, ui) {

        showUser(ui.item.value);
        $("#hiddenID").val(ui.item.value);

        }