通过javascript中的window.location传递数据

时间:2012-09-21 08:53:59

标签: php javascript

我试图通过window.location传递数据,数据在del(id,img,album)中可用。

我想通过window.location发送多个值为

 window.location="save.php?type=deldownload&album="+album&id="+id; 

但这不起作用,但下面的代码可行。

function del(id,img,album){
    var where_to= confirm("Do you really want to delete "+img+" image");
    if (where_to== true)
    {
         window.location="save.php?type=deldownload&id="+id; 
    } 
    else
    {
         alert('Ok! You Can continue with this Album');
    }

}

请告诉我们真正的问题是什么。

1 个答案:

答案 0 :(得分:6)

你错过了几个引号

window.location="save.php?type=deldownload&album="+album+"&id="+id;