如何使用ajax url发送两个参数

时间:2016-10-08 05:32:25

标签: javascript jquery ajax url

我正在尝试将两个值发送到新页面我是jquery的新手我如何能够将它们连接起来:

  

错误位于地点行('')

这里是我的ajax代码:

success: function (response) {
if(response["success"]==true)
{
    $("#showMessage").html(response['message']);
    location = '/learningcurve/gdpi.php?jobid=='+response["id"]'&jobname=='+response["jobname"];
     window.open(location);

enter image description here

2 个答案:

答案 0 :(得分:1)

你忘了连接:

'+response["id"]+'

注意+

答案 1 :(得分:1)

尝试这个

success: function (response) {
if(response["success"]==true)
{
    $("#showMessage").html(response['message']);
    location = "/learningcurve/gdpi.php?jobid="+response["id"]+"&jobname="+response["jobname"];
     window.open(location);