我正在尝试将两个值发送到新页面我是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);
答案 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);