gpt4 book ai didi

php - 访问ajax/jquery返回的数据并将其放入表单字段

转载 作者:行者123 更新时间:2023-12-02 20:20:46 25 4
gpt4 key购买 nike

用户在此表单上输入地址,然后单击验证地址,然后我运行以下命令:

$('#verify').click(function () {

var address = $('input[name=address]');
var city = $('input[name=city]');
var state = $('input[name=state]');
var zip = $('input[name=zip]');
var country = $('select[name=country]');

//organize the data for the call
var data = 'address=' + address.val() + '&city=' + city.val() + '&state=' + state.val() + '&zip=' + zip.val() + '&country=' + country.val();

//start the ajax
$.ajax({
url: "process.php",
type: "GET",
data: data,
cache: false,
success: function (html) {

//alert (html);

if (html!='error') {

//show the pin long and lat form
$('.form2').fadeIn('slow');

} else alert('Error: Your location cannot be found');
}
});

//cancel the submit button default behaviours
return false;
});

process.php 获取数据,并验证该地址是否存在,然后以“longitude,latitude”形式发回纬度和经度。如何获取该数据并将其放置在找到位置后显示的表单字段中(form2 div 中的表单字段)。非常感谢。

最佳答案

替换这个:

$('.form2').fadeIn('slow');

这样:

$('.form2').fadeIn('slow').find('input[name=latlon]').val(html);

其中 latlon 是要在其中插入纬度和经度的输入字段的名称。

关于php - 访问ajax/jquery返回的数据并将其放入表单字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5601717/

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