回答:
質問には2つの部分があります。
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();
});
これを行うためのポータブルな方法は次のように(ハンドルブラウザの違いに)カスタム関数を使用して、この1。
次に、jessegavinが書いたようonload
に、<body>
タグの最後にのハンドラーをセットアップします。
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