如何重定向到链接存储在变量中的页面?

时间:2012-03-07 12:27:42

标签: javascript html html5

var f =“http://www.google.com”; 'f'是变量,存在f中的链接。 反正有没有放置一个链接,可以将我们重定向到变量f的链接?

2 个答案:

答案 0 :(得分:2)

  

无论如何都要放置一个可以将我们重定向到链接的链接   变量f?

使用window.location Docs

var f="http://www.google.com";
window.location = f;

答案 1 :(得分:0)

var f="http://www.google.com";

//redirect code<br>
location.href = f