gpt4 book ai didi

php - 在 javascript 中通过 window.location 传递数据

转载 作者:可可西里 更新时间:2023-11-01 00:34:29 25 4
gpt4 key购买 nike

我正在尝试通过 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');
}

}

请说出真正的问题是什么。

最佳答案

你遗漏了一些引号

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

关于php - 在 javascript 中通过 window.location 传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12527260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com