gpt4 book ai didi

javascript - 如何将自动完成的选定值 id 传递给 jquery 中的数据属性

转载 作者:行者123 更新时间:2023-11-30 15:13:57 26 4
gpt4 key购买 nike

我选择使用自动完成查询的状态。在我的数据库中,我需要存储状态 ID 而不是状态名称。如何将自动完成的选定值各自的 id 传递给输入的数据属性

$(document).ready(function() {

src = "{{ url('searchajax') }}";
$(".searchledger").autocomplete({
source: function(request, response) {
$.ajax({
url: src,
dataType: "json",
data: {
term : request.term
},
success: function(data) {
response(data);
}
});
},
minLength: 1,

});

});

最佳答案

尝试这样的事情:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Autocomplete - Custom data and display</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<style>
#project-label {
display: block;
font-weight: bold;
margin-bottom: 1em;
}
#project-icon {
float: left;
height: 32px;
width: 32px;
}
#project-description {
margin: 0;
padding: 0;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
var projects = [
{
value: "1",
label: "jQuery"
},
{
value: "2",
label: "jQuery UI"
},
{
value: "3",
label: "Sizzle JS"
}
];

$( "#project" ).autocomplete({
minLength: 0,
source: projects,
focus: function( event, ui ) {
$( "#project" ).val( ui.item.label );
return false;
},
select: function( event, ui ) {
$( "#project" ).val( ui.item.label );
$( "#project-id" ).val( ui.item.value );
return false;
}
})
.autocomplete( "instance" )._renderItem = function( ul, item ) {
return $( "<li>" )
.append( "<div>" + item.label + "</div>" )
.appendTo( ul );
};
} );
</script>
</head>
<body>

<div id="project-label">Select a project (type "j" for a start):</div>

<input id="project">

<input type="text" id="project-id"> <!-- make it hidden -->

</body>
</html>

从自动完成中选择任何选项时,您将在以下位置获得所选值的 ID:

<input type="text" id="project-id">

将其隐藏并获取其值并相应地使用它。

关于javascript - 如何将自动完成的选定值 id 传递给 jquery 中的数据属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44734688/

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