在 jquery 自动完成中获取值

发布于 2024-11-02 18:36:24 字数 672 浏览 1 评论 0原文

这是我的代码

jquery 代码

$("input#shopName").autocomplete({
    source: "getShop.php",
    minLength: 2
});

从 PHP 返回的 JSON 值如下所示,

if(isset($_GET["term"])){

$query=$_GET["term"];
    $result = $dataset->get_custom_record("SELECT * FROM mc_shop WHERE shop_title like  '%" . $query . "%'  ORDER BY id");
}

 while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
        $row_array['id'] = $row['id'];
        $row_array['value'] =$row['shop_title'];

        array_push($return_arr,$row_array);
    }
echo json_encode($return_arr);

自动完成功能工作正常,但是在从自动完成功能中选择值时,我需要将相应的“id”值放入一个隐藏变量中,我不知道该怎么做>

Here is my code

jquery code

$("input#shopName").autocomplete({
    source: "getShop.php",
    minLength: 2
});

The JSON value return from PHP as below

if(isset($_GET["term"])){

$query=$_GET["term"];
    $result = $dataset->get_custom_record("SELECT * FROM mc_shop WHERE shop_title like  '%" . $query . "%'  ORDER BY id");
}

 while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
        $row_array['id'] = $row['id'];
        $row_array['value'] =$row['shop_title'];

        array_push($return_arr,$row_array);
    }
echo json_encode($return_arr);

autocomplete is working fine but while selecting the value from autocomplete I need put the corresponding "id" value inside one hidden variable I don't know how to do>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

屋顶上的小猫咪 2024-11-09 18:36:24
$("input#shopName").autocomplete({
    source: "getShop.php",
    minLength: 2,
    select: function(event, ui) { 
        $("#theHidden").val(ui.item.id) 
    }
});

请参阅http://jqueryui.com/demos/autocomplete/#event-select

$("input#shopName").autocomplete({
    source: "getShop.php",
    minLength: 2,
    select: function(event, ui) { 
        $("#theHidden").val(ui.item.id) 
    }
});

See http://jqueryui.com/demos/autocomplete/#event-select

可可 2024-11-09 18:36:24

使用以下命令获取单击时选择的值

   $( "#searchText" ).bind( "autocompleteselect", function(event, ui) {
    console.log(ui['item']['value']);
    }); 

Use the following to get chosen value onClick

   $( "#searchText" ).bind( "autocompleteselect", function(event, ui) {
    console.log(ui['item']['value']);
    }); 
愿与i 2024-11-09 18:36:24

这对我来说非常有效:

$(ui)[0].item.label
$(ui)[0].item.value

This works for me fantastically:

$(ui)[0].item.label
$(ui)[0].item.value
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文