查询字符串 - 多个参数

时间:2013-11-06 08:36:49

标签: html query-string window.location

我正在尝试传递以下Query String,但遇到Webpage not available错误:

window.location.href = "chaindeals.html?chainID=" + chainID + "&imageURL=" + imageURL;

我也尝试将&更改为&,但我收到同样的错误。

有人知道我做错了吗?

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

尝试将完整网址提供给window.location.href,而不仅仅是页面名称:

var host = "http://" + window.location.host;
window.location.href = 
    host 
    + "/chaindeals.html"
    + "?chainID=" + chainID 
    + "&imageURL=" + imageURL;

答案 1 :(得分:0)

请试试这个。

var url = ''; url = url.concat('chaindeals.html?chainID=',chainID, '&imageURL=', imageURL); window.location.href = url;