如何使用通过帖子发送的数据或使用jquery获取请求?

时间:2016-09-02 07:11:30

标签: javascript jquery html

我对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中的Ageinfo.html。我知道可以在PHP中完成,包括form.html$_POST['cityName'],但是如何在jQuery中执行此操作?我想使用我发布到info.html的数据。

0 个答案:

没有答案