ページの読み込み時にカーソルを特定の入力ボックスにフォーカスするにはどうすればよいですか?
初期テキスト値も保持し、入力の最後にカーソルを置くことは可能ですか?
<input type="text" size="25" id="myinputbox" class="input-text" name="input2" value = "initial text" />
質問には2つの部分があります。
1)ページの読み込みに入力を集中させる方法
autofocus
属性を入力に追加するだけです。
<input id="myinputbox" type="text" autofocus>
ただし、これはすべてのブラウザーでサポートされているわけではないため、javascriptを使用できます。
window.onload = function() {
var input = document.getElementById("myinputbox").focus();
}
2)入力テキストの最後にカーソルを置く方法は?
another SO answer からのいくつかの借用コードを使用した非jQueryソリューションです。
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();
});
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">
これを行うポータブルな方法は、 this one のようなカスタム機能(ブラウザーの違いを処理するため)を使用することです。
次に、jessegavinが書いたように、<body>
タグの最後にonload
のハンドラーをセットアップします。
window.onload = function() {
document.getElementById("myinputbox").focus();
}
非常にシンプルな1行のソリューション:
<body onLoad="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>
From: http://webreflection.blogspot.com.br/2009/06/inputfocus-something-really-annoying.html
試行:
Javascript Pure:
[elem][n].style.visibility='visible';
[elem][n].focus();
Jquery:
[elem].filter(':visible').focus();
何らかの理由でBODYタグに追加できない場合は、フォームの後にこれを追加できます。
<SCRIPT type="text/javascript">
document.yourFormName.yourFieldName.focus();
</SCRIPT>