0

我遇到了这种奇怪的情况,我无法在我正在创建的表单上使用鼠标。它要求我在文本字段中进行选项卡。如果我单击第二个字段,它只会将我推回到第一个字段,我必须制表符!

这是一个非常简单的表格,它与标签有关,但我以前从未遇到过问题。

顺便说一句:此表单或页面中没有 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>
4

1 回答 1

0

这是用标签格式化输入的正确方法。这应该可以解决您的问题。

<label for="username">*Username*<input type="text" name="username" tabindex="1" id="username"/></label>
<label for="password">*Password*<input type="password" name="password" tabindex="2" id="password"/></label>

演示:http: //jsfiddle.net/ZFZgt/

于 2013-02-25T21:41:21.410 回答