所以我想弄清楚如何使用返回的json信息。我想提取城市和州信息,然后引用城市,并在我的html中的其他地方使用自动填充概念来说明。问题是,我没有要引用的对象。
到目前为止,这是我使用AJAX请求的位置
$.ajax({
dataType: "json",
url: ("http://ZiptasticAPI.com/" + $("#zipcode").val()),
data: {},
success: function (resultdata) {
console.info(resultdata);}
最佳答案
如果要使用从AJAX检索到的数据填写表单,则取决于数据类型(如果是输入,复选框,选择等)选项。如我所见,您正在使用jQuery。
例如,将值设置为输入文本:
$('input.foo').val(resultdata.city);
如果选择输入:
$("select").val(resultdata.state); // this only works if the value of the option is CA
等等。