按浏览器中的按钮

时间:2016-10-17 19:37:31

标签: html

我有两个html页面。

我进入第一页,按按钮转到第二页。 问题是当我进入第二页(signin.html)并且我从浏览器按下后退按钮我不会去第一页(welcome.html)我转到其他一些上一页。我需要能够通过按下按钮返回,我该如何实现?

html 1 welcome.html

<HTML>
<HEAD>
    <TITLE>
        Welcome page 
    </TITLE>
</HEAD>
<BODY>
<div>
<div class="button">
<input name="account" type="button" value="I am a service provider" onclick="window.location.replace('/member/sign-in.html')"/>
</div>
</BODY>
</HTML>

html 2 signin.html

<HTML>
<HEAD>
    <TITLE>
    Member sign in
    </TITLE>
</HEAD>
<BODY>
<form id="myform" action="/my-code/signInMember.php" method="post">
<div>
    <label for="spEmail">E-mail:</label>
    <input type="email" id="spEmail" name="spEmail" required/>       
</div>
<div>
    <label for="spPswd">Password:</label>
    <input type="password" id="spPswd" name="spPswd" required/>
</div>
<div class="button">
    <button type="submit" name="submit">Sign in</button>
</div>
<div class="button">
    <input name="submit" type="button" value="sign up for free"  onclick="window.location.replace('/member/create-account.html')"/>
</div>
<div/>
</form>
</BODY>
</HTML>

有什么想法吗?我环顾四周,每个人都说要添加一个按钮返回(使用php或javascript),但我不想要那样。我想按下浏览器按钮,然后返回,不要使用页面本身的按钮。

谢谢,任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:2)

onclick事件,而不是使用"window.location.replace('/member/sign-in.html')"根据您的目标网址html使用"window.location.href='/member/sign-in.html'""window.location.href='member/sign-in.html'"

答案 1 :(得分:1)

谢谢,我改变了建议:

<form>
    <input TYPE="button" VALUE="Offer this service"
    onclick="window.location.href='/member/signin.html'"> 
</form>

它有效!