gpt4 book ai didi

jquery - 在 jquery 自动完成中获取值

转载 作者:行者123 更新时间:2023-12-03 22:26:21 25 4
gpt4 key购买 nike

这是我的代码

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”值放入一个隐藏变量中,我不知道该怎么做>

最佳答案

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

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

关于jquery - 在 jquery 自动完成中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5766726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com