Jquery JSON返回附加到查询字符串

时间:2014-12-11 08:43:12

标签: jquery json append

如何将JSON回调proj附加为查询字符串?

success: function(response){
        window.proj = '?proj='+response.proj;
        alert(proj);
}

需要在export.php?proj=project-name

之后立即插入
<button type="button" onClick="parent.location='export.php'">Submit</button>

有可能吗?

1 个答案:

答案 0 :(得分:0)

decodeURIComponent函数在给定的字符串中搜索转义序列,并用实际字符替换它们。

success: function(response){
        window.proj = '?proj='+response.proj;
        //If data is your object with key value pair of names and values
        var data = { first_parameter: 'first', second_parameter: 'second' };
        var queryStringparams = decodeURIComponent($.param(data));
        //End
        alert(proj);
}