我使用 jquery 来显示隐藏的表单。我想知道如何在用户单击Submit
然后按时自动显示表单back button
。我不希望用户New Account
在单击后退按钮后再次单击以显示表单。
我目前有这些工作代码:
<head>
<script src="https://code.jquery.com/jquery-latest.js">
</script>
<script type="text/javascript">
$(function() {
$('#register_link').click(function() {
$('#show_form').toggle();
return false;
});
});
</script>
</head>
<a href="http://www.google.com/">Google</a>
|
<a href="#" id="register_link">New Account</a>
<div id="show_form" style="display: none;">
<form id="register_form" method="post" action="verify.php">
Username
<inputname="username" id="username" type="text">
<br>
Email
<input name="email" id="email" type="email">
<br>
<input class="button_register" type="submit" value="Create New Account"
/>
</form>
</div>
示例:http: //jsfiddle.net/n9uGH/17/
真的有可能吗?提前致谢