我有
jQuery(document).ready(function(){
$('#location_search').autocomplete(
{
source:'suggest_location.php',
minLength:1});
});
它返回 JSON 数据:
[
{
"label" : "EB\u0130 Konukevi",
"value" : "EB\u0130 Konukevi, 32.791, 39.888",
"hor" : "32.791",
"ver" : "39.888"
},
{
"label" : "EB\u0130 Gretwes",
"value" : "EB\u0130 Gretwes, 32.491, 39.488",
"hor" : "32.491",
"ver" : "39.488"
}
]
当我选择其中一个位置时,它会填充 location_search 字段。
选择位置后,如何使用 hor 和 ver 填充隐藏的文本输入(带有 id 的 ver 和 hor)?