在文本字段上设置焦点的最快方法

时间:2011-04-10 08:50:31

标签: javascript jquery setfocus


将焦点设置在文本字段上的最快(最快)方法是什么?

我的页面看起来像

<html>
 <head> ... </head>

  <body>

    ... content ...  

    <input type="text" id="ct_one" name="ct_pet[]" value="" />

    ... content ...

   <script> ... load jquery and jquery_ui ... </script>

  </body>

</html>

提前致谢!
彼得

3 个答案:

答案 0 :(得分:2)

您可以在元素后面放置一个脚本,将焦点设置到该元素。这将在尽可能早的时刻设定焦点,即在元素创建之后。

<input type="text" id="ct_one" name="ct_pet[]" value="" />

<script type="text/javascript">
document.getElementById('ct_one').focus();
</script>

答案 1 :(得分:0)

将值0分配给输入字段的属性tabindex。

http://www.w3.org/TR/html4/interact/forms.html#adef-tabindex

答案 2 :(得分:0)

这里接受的答案似乎是“真的最快”:)

Set input field focus on start typing

JSFiddle example