将用户重定向到他们自己的主页

时间:2012-08-15 08:53:09

标签: html hyperlink

我想知道是否可以将用户重定向到他们的主页。在主页上我指的是在他们的浏览器中定义的URL作为主页。他们点击浏览器的“主页”按钮时得到的那个。

我知道Internet Explorer使用<a href="about:home" title"Go to your homepage">Homepage</a>,但我不知道其他浏览器使用的是什么!

这可能吗?

2 个答案:

答案 0 :(得分:1)

只需建立一个链接即可返回用户来自的位置:

<a href="#" onClick="history.go(-1);return true;">Back</a>

或类似的按钮

<button type="button" onClick="history.go(-1): return true:">I do not agree</button>

答案 1 :(得分:1)

我不知道你是否正在寻找这个话题中讨论过的东西:

Sending user to their browser's Home Page using Javascript