使用jQuery AJAX将JSON对象传递到带有窗口对象的另一个页面

时间:2018-09-18 19:25:10

标签: jquery ajax

您好,我正在进行一个AJAX帖子调用,我想将响应(它是JSON对象)发送到另一个页面。我想使用窗口对象方法发送数据。请帮忙。

HTML-

$(document).ready(function(){
    $('#btn').click(function(e){
            e.preventDefault();
            var url ="/responseURL";
            var data = keyNumber;
            coAjax(url, data, function(result){

                var window_tool = open('other-page.jsp');
                var new_result;
                $(window_tool).load(function(){
                    new_result = result;
                    console.log("hello" + new_result);
                //I want to take the paramater to the new page 
                });
            }); 
    });
});

function coAjax(url, data, handleData) {
    $.ajax({
        url:url,
        dataType: 'json',
        contentType: 'application/json',
        data: data,
        success:function(result) {
            handleData(result);
            console.log('success');
        },  
        error: function(e){
            console.log('error');
        }


    });
}

我收到未定义的错误。请帮忙。

0 个答案:

没有答案