从Query String中提取变量并添加到JS重定向URL中

时间:2011-04-14 00:00:20

标签: javascript query-string

我正在尝试在查询字符串example.com/?hop=test

中获取变量的值

然后将其传递给这种形式的JavaScript:

var exitsplashpage = 'http://example2.com/?hop=original_hop';

如何使用JavaScript获取原始跃点变量值以及将其放入exitsplashpage var的正确格式是什么?

谢谢!

2 个答案:

答案 0 :(得分:1)

使用this中的the link that @Felix Kling posted getQueryString()功能,您可以执行以下操作:

var exitsplashpage = 'http://example2.com/?hop=' + getQueryString()["hop"];

要么是这样,要么看看jQuery Query String Object,你要做到这一点:

var exitsplashpage = 'http://example2.com/?hop=' + $.query.get("hop");

答案 1 :(得分:0)

试试这个:

var exitsplashpage = window.location.search.match(/\?hop=([^\&]*)/)[1]