聚焦输入框加载

时间:2010-12-02 02:08:19

标签: javascript html dom xhtml javascript-events

如何在页面加载时将光标聚焦在特定的输入框上?

是否可以保留初始文本值并将光标放在输入的末尾?

<input type="text"  size="25" id="myinputbox" class="input-text" name="input2" value = "initial text" />

11 个答案:

答案 0 :(得分:146)

您的问题分为两部分。

1)如何将输入集中在页面加载上?

您只需将autofocus属性添加到输入中即可。

<input id="myinputbox" type="text" autofocus>

但是,并非所有浏览器都支持此功能,因此我们可以使用javascript。

window.onload = function() {
  var input = document.getElementById("myinputbox").focus();
}

2)如何将光标放在输入文本的末尾?

这是一个非jQuery解决方案,其中包含一些来自another SO answer的借用代码。

function placeCursorAtEnd() {
  if (this.setSelectionRange) {
    // Double the length because Opera is inconsistent about 
    // whether a carriage return is one character or two.
    var len = this.value.length * 2;
    this.setSelectionRange(len, len);
  } else {
    // This might work for browsers without setSelectionRange support.
    this.value = this.value;
  }

  if (this.nodeName === "TEXTAREA") {
    // This will scroll a textarea to the bottom if needed
    this.scrollTop = 999999;
  }
};

window.onload = function() {
  var input = document.getElementById("myinputbox");

  if (obj.addEventListener) {
    obj.addEventListener("focus", placeCursorAtEnd, false);
  } else if (obj.attachEvent) {
    obj.attachEvent('onfocus', placeCursorAtEnd);
  }

  input.focus();
}

以下是我将如何使用jQuery实现此目的的示例。

<input type="text" autofocus>

<script>
$(function() {
  $("[autofocus]").on("focus", function() {
    if (this.setSelectionRange) {
      var len = this.value.length * 2;
      this.setSelectionRange(len, len);
    } else {
      this.value = this.value;
    }
    this.scrollTop = 999999;
  }).focus();
});
</script>

答案 1 :(得分:44)

只是提前 - 您现在可以使用不带JavaScript的HTML5为支持它的浏览器执行此操作:

<input type="text" autofocus>

您可能希望从此开始,并使用JavaScript构建它,以便为旧浏览器提供后备。

答案 2 :(得分:10)

$(document).ready(function() {
    $('#id').focus();
});

答案 3 :(得分:3)

function focusOnMyInputBox(){                                 
    document.getElementById("myinputbox").focus();
}

<body onLoad="focusOnMyInputBox();">

<input type="text"  size="25" id="myinputbox" class="input-text" name="input2" onfocus="this.value = this.value;" value = "initial text">

答案 4 :(得分:2)

这样做的一种便携方式是使用自定义功能(处理浏览器差异),例如this one

然后在onload标记的末尾为<body>设置处理程序,jessegavin写道:

window.onload = function() {
  document.getElementById("myinputbox").focus();
}

答案 5 :(得分:1)

工作正常......

window.onload = function() {
  var input = document.getElementById("myinputbox").focus();
}

答案 6 :(得分:1)

非常简单的一线解决方案:

<body onLoad="document.getElementById('myinputbox').focus();">

答案 7 :(得分:0)

这对我来说很好用:

<form name="f" action="/search">
    <input name="q" onfocus="fff=1" />
</form>

fff将是一个全局变量,其名称绝对无关紧要,目标是停止通用onload事件以强制关注该输入。

<body onload="if(!this.fff)document.f.q.focus();">
    <!-- ... the rest of the page ... -->
</body>

来自:http://webreflection.blogspot.com.br/2009/06/inputfocus-something-really-annoying.html

答案 8 :(得分:0)

如果由于某种原因无法添加到BODY标记,可以在表单后添加:

<SCRIPT type="text/javascript">
    document.yourFormName.yourFieldName.focus();
</SCRIPT>

答案 9 :(得分:0)

<强>尝试:

Javascript Pure:

[elem][n].style.visibility='visible';
[elem][n].focus();

<强> Jquery的:

[elem].filter(':visible').focus();

答案 10 :(得分:0)

将此添加到您的js顶部

var input = $('#myinputbox');

input.focus();

或转到html

<script>
    var input = $('#myinputbox');

    input.focus();
</script>