我遇到了这种奇怪的情况,我无法在我正在创建的表单上使用鼠标。它要求我在文本字段中进行选项卡。如果我单击第二个字段,它只会将我推回到第一个字段,我必须制表符!
这是一个非常简单的表格,它与标签有关,但我以前从未遇到过问题。
顺便说一句:此表单或页面中没有 JS 或 CSS
我的例子:
<form>
<label for="username"*Username label>
<input type="text" name="username" tabindex="1" id="username">
<label for="password"*Password*label*>
<input type="password" name="password" tabindex="2" id="password">
<input type="submit" class="button" value="Login" name="submit" >
</form>