将输入框焦点放在加载上

问题描述 投票:0回答:12
javascript html dom xhtml
12个回答
208
投票

您的问题分为两部分。

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>

56
投票

请注意 - 对于支持它的浏览器,您现在可以使用 HTML5 执行此操作,无需使用 JavaScript:

<input type="text" autofocus>

您可能想从此开始并使用 JavaScript 进行构建,为旧版浏览器提供后备。


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

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

2
投票

执行此操作的一种可移植方法是使用自定义函数(处理浏览器差异),例如 this one

然后在

onload
标签末尾为
<body>
设置处理程序,如 jessegavin 所写:

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

2
投票

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

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

1
投票

工作正常...

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

1
投票

尝试:

纯Javascript:

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

Jquery:

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

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


0
投票

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

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

0
投票

将其添加到 js 的顶部

var input = $('#myinputbox');

input.focus();

或转为 html

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

    input.focus();
</script>

0
投票

就做吧!

window.onload = function() {
 setTimeout(function () {
  document.getElementById("input-box-id").focus();
  document.getElementById("input-box-id").click();
 }, 1000);
}
© www.soinside.com 2019 - 2024. All rights reserved.