当我在我的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>
答案 0 :(得分:0)
可能是因为您在页面完全加载之前输入了密码数据,当光标跳转到用户名文本框时,它首先出现在HTML中。经常发生在我身上!