我对jQuery很新。我想将数据从form.html
发送到info.html
。我找到一个片段将数据发布到info.html
但我不知道如何info.html
Form.html
var arr = {
City: 'Moscow',
Age:25
};
$.ajax({
url: 'delete2.html',
dataType: 'json',
type: 'get',
contentType: 'application/json',
data: JSON.stringify(arr),
processData: false,
success: function(data){
$('body').html(JSON.stringify(data));
},
error: function(jqXhr, textStatus, errorThrown) {
console.log(errorThrown);
}
});
但我想使用该数据并使用City
中的Age
和info.html
。我知道可以在PHP中完成,包括form.html
和$_POST['cityName']
,但是如何在jQuery中执行此操作?我想使用我发布到info.html
的数据。