$('.location-wrap-6ren">
gpt4 book ai didi

php - 将数组文本输入值发送到 ajax

转载 作者:行者123 更新时间:2023-12-01 04:37:54 26 4
gpt4 key购买 nike

我想使用 AJAX 检索作为数组的输入值。

<td>
<label for=""><?php _e( 'State' ); ?></label>
<input type="text" name="state_to[<?php echo $country_id ?>][]" class=" state_selection" placeholder="State name">
</td>

$('.location-wrapper').on('change', '.state_selection', function() {

var country = $('#country_selection').val();
var self = $(this),
data = {
//state_id : self.find(':selected').val(),
state_id : $('input[name="state_to[country][]"]').val(),
country_id: $('#country_selection').val(),
action : 'select_zip_by_state_country'
};

});

我能够检索国家/地区的正确值,但无法检索州/地区的正确值。请问有人可以帮我解决这个问题吗?

最佳答案

给你一个解决方案

$('.location-wrapper').on('change', '.state_selection', function() {
var country = $('#country_selection').val();
var self = $(this),
data = {
//state_id : self.find(':selected').val(),
state_id : $('input[name="state_to[' + country + '][]"]').val(),
country_id: $('#country_selection').val(),
action : 'select_zip_by_state_country'
};
});

希望这对您有帮助。

关于php - 将数组文本输入值发送到 ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45918920/

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