4

我需要制作一个动态 HTML 页面以使用 JavaScript 重定向到一个 URL。
作为一个初学者,我需要你的帮助......
我想做的是通过一个 html 页面重定向到一个 url。
例如:假设一个页面地址是www.example.com/pages.html?http://yahoo.com/news这样pages.html的,在这种情况下,这个页面会将用户重定向到 yahoo.com/news ...。
我知道如何使用 PHP 来做到这一点,但我不明白我应该如何使用 javascript 和 HTML 来做到这一点。任何想法?谢谢

4

3 回答 3

2

这应该这样做:

 function Redirect(){
  var current = window.location.href;
  var exclude = current.indexOf('?');
  window.location = current.substr(exclude + 1);
 }
 setTimeout("Redirect()",5000);
于 2012-08-29T18:26:43.813 回答
0

您可以使用window.location.href="new-url.html";JavaScript 访问 URL。

要解析 URL,请使用var theURL=window.location.href.split("?")[1];

于 2012-08-29T18:24:42.837 回答
0
location.href = location.href.split("?")[1];
于 2012-08-29T18:33:43.640 回答