Answers:
您的问题分为两部分。
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>
请注意-您现在可以在不支持JavaScript的情况下使用HTML5对支持此功能的浏览器执行此操作:
<input type="text" autofocus>
您可能想从此开始,并使用JavaScript构建它,以为较旧的浏览器提供后备功能。
$(document).ready(function() {
$('#id').focus();
});
一种可移植的方法是使用像这样的自定义函数(以处理浏览器差异)。
然后onload
,在<body>
标签末尾为设置处理程序,如jessegavin写道:
window.onload = function() {
document.getElementById("myinputbox").focus();
}
工作正常...
window.onload = function() {
var input = document.getElementById("myinputbox").focus();
}
这对我来说很好:
<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