在网址中添加一些内容,重定向到网址

时间:2014-03-05 05:42:26

标签: javascript redirect ruby-on-rails-3.2

假设,我现在的网址是:

http://localhost:3000/contests

按下按钮后,我将重定向到以下网址:

http://localhost:3000/contests?keywords=algo

我的问题是,我想重定向到包含其他附加信息的路径:

http://localhost:3000/contests?keywords=algo&show=present

此处,& show = present 会添加到重定向的网址中。我怎么能用javascript做到这一点?

如何使用javascript获取重定向网址?

2 个答案:

答案 0 :(得分:1)

点击按钮即可。

    var url=document.URL + "&show=present";
    window.location.href = url;

使用document.URL获取当前网址。

希望这会对你有所帮助!!

答案 1 :(得分:-1)

location.href = location.href + "?keywords=algo"

还会使用window.location对象at MDN

检查所有其他可能性