我想创建一个网站页面,比如这个http://www.test.com
这样的域名。在此网站中,我有页面http://www.test.com/page1.html?bounce=http://www.test.com/page2.html
。
我想在/page1.html中使用javascript链接到/page2.html进行按钮链接?我如何使用这样的URL参数信息
http://www.test.com/page1.html?bounce=http://www.test.com/page2.html
答案 0 :(得分:0)
导航到JS中的新页面的语法是:
window.location.href = 'http://www.test.com/page2.html';
但是,如果您需要使用纯JS访问浏览器URL中的GET参数,那么完全不同。有关详细解决方案,请参阅How to get the value from the GET parameters?。