0

好的,我正在尝试查找这是否可能,我有一个包含两个登录表单的页面。但使用相同的用户名和密码。是否有可能,而一旦我登录到一个表单,我的用户名是从已经有我的用户名的表单中提取的,并且密码是从数据库中提取的?

<form action="home.php" method="post" id="LoginForm" style="color:#FFF">
<input type="hidden" name="SessionID" value="new"></input>
Username:
<input type="text" name="AccountNo" value="" class="input" size="28"></input>
<BR /><BR />
&nbsp;&nbsp;Password:
<input type="password" name="Password" value="" class="input" size="30"></input>
<BR />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="image" src="images/input-img.gif" value="Log On" class="input-img"></input>
<BR /><br />
<a href="#" class="link" style="font-size:12px;">Register now!</a>   <a href="#" style="font-size:12px;">Forgotten your password?</a>
</form>
4

1 回答 1

0

如果你的问题是它是否可能,那么答案是肯定的,它是可能的。

提交表单后,您可以使用 JavaScript 从第一个表单中读取用户名并将其填充到第二个表单中。要获取密码,您可以使用 AJAX。

于 2012-11-22T09:16:24.117 回答