gpt4 book ai didi

php - 我想将选定的选项从一个文本框传递到第二个文本框

转载 作者:行者123 更新时间:2023-11-30 00:05:25 25 4
gpt4 key购买 nike

当用户键入并选择其中一个选项时,第一个框会自动完成。该值来自具有 3 个属性的数据库:idnamevalue。我希望第一个文本框中所选名称的自动显示在第二个框中。一旦用户选择了name,我如何携带namevalue

index.php:

<script type="text/javascript">
$(document).ready(function()
{
$('#auto').autocomplete(
{
source: "search.php?json",
minLength: 3

});
});


</script>

</head>

<body>
<p>Type the name of a band: <input type="text" id="auto" /></p>


</body>
</html>

search php file

<?php
$mysqli = taken off;
$text = $mysqli->real_escape_string($_GET['term']);

$query = "SELECT name, salary FROM tag WHERE name LIKE '%$text%' ORDER BY
name ASC";
$result = $mysqli->query($query);
$json = '[';
$first = true;
while($row = $result->fetch_assoc())
{
if (!$first) { $json .= ','; } else { $first = false; }
$json .= '{"value":"'.$row['name'].'"}';

}
$json .= ']';

echo $json;

?>

最佳答案

尝试通过执行以下操作在自动完成中附加触发器

$( '#auto' ).autocomplete({
select: function( event, ui ) {
var myValue = $(this).val();
//Do what you want with your value
}
});

关于php - 我想将选定的选项从一个文本框传递到第二个文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24601459/

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