我正在尝试在查询字符串example.com/?hop=test
然后将其传递给这种形式的JavaScript:
var exitsplashpage = 'http://example2.com/?hop=original_hop';
如何使用JavaScript获取原始跃点变量值以及将其放入exitsplashpage var的正确格式是什么?
谢谢!
答案 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]