焦点输入框在负载下


95

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

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

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

Answers:


170

您的问题分为两部分。

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

您可以将autofocus属性添加到输入中。

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

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

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

2)如何将光标置于输入文本的末尾?

这是一个非jQuery解决方案,其中的一些代码是从另一个SO答案中借来的。

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>

3
建议的第一个代码块实际上也将光标放在现有值的末尾,效果很好。非常感谢您的帮助。
Codex73

46

请注意-您现在可以在不支持JavaScript的情况下使用HTML5对支持此功能的浏览器执行此操作:

<input type="text" autofocus>

您可能想从此开始,并使用JavaScript构建它,以为较旧的浏览器提供后备功能。


很高兴知道,这是否已将光标移动到输入字段的最后一个位置?
卡米洛·迪亚斯·雷普卡(CamiloDíazRepka)2010年

1
我不认为@ Codex73试图完成HTML5中的占位符属性。听起来他想让光标自动定位在输入中当前值的末尾。
jessegavin

2
没错,这不是完整的解决方案。但这确实解决了两件事(加载自动对焦和占位符文本)。
David Calhoun

请注意,自1/2019起,iOS上的Safari不支持此功能:caniuse.com/#feat=autofocus
sporker


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">



1

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

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


0

如果由于某种原因而无法添加到BODY标签,则可以在表单之后添加此标签:

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

0

尝试:

Javascript Pure:

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

jQuery:

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

0

将此添加到您的js顶部

var input = $('#myinputbox');

input.focus();

或html

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

    input.focus();
</script>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.