1

当我在我的 html 的文本字段(除第一个文本字段)中输入数据时,它将自动到达我的 html 表单中的第一个文本字段

<form name="f" action="product.php" method="post">
                <td><h4><u>User Login:</u></h4></td>
                <tr><td >Username:</td><td><input type="text" name="user" class="style" placeholder="Enter UserName" /></td></tr>
                <tr><td>password:</td><td><input type="password" name="pass" class="style" placeholder="Enter Password" /></td></tr>
                <tr><td></td>
                <td><input type="submit" name="submit" value="submit"  /><input type="button" name="newuser" value="Newuser"onclick="self.location="Newuser.jsp"" />`enter code here`</td></tr>
</form>
4

1 回答 1

0

这可能是因为您在页面完全加载之前在密码中输入数据,并且当它这样做时光标跳转到用户名文本框,它在 HTML 中是第一个。经常发生在我身上!

于 2012-06-22T13:44:55.903 回答