ロード時に入力ボックスにフォーカス


95

ページの読み込み時にカーソルを特定の入力ボックスにフォーカスするにはどうすればよいですか?

初期のテキスト値を保持し、入力の最後にカーソルを置くことは可能ですか?

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

回答:


170

質問には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>

3
提案された最初のコードブロックは、実際には既存の値の末尾にもカーソルを置きます。よろしくお願いします。
Codex73

46

ほんの少し前に、これをサポートするブラウザのJavaScriptなしでHTML5でこれを実行できるようになりました。

<input type="text" autofocus>

おそらくこれから始めて、JavaScriptで構築して、古いブラウザーにフォールバックを提供したいと思うでしょう。


知っていてよかったのですが、これで既にカーソルが入力フィールドの最後の位置に移動していますか?
CamiloDíazRepka

1
@ Codex73がHTML5のプレースホルダー属性の機能を実現しようとしているとは思いません。現在入力にある値の最後にカーソルを自動的に配置したいようです。
jessegavin 2010

2
そうです、これは完全なソリューションではありません。しかし、これはいくつかのことを解決します(オンロードオートフォーカスとプレースホルダーテキスト)。
David Calhoun、

1


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

これを行うためのポータブルな方法は次のように(ハンドルブラウザの違いに)カスタム関数を使用して、この1

次に、jessegavinが書いたようonloadに、<body>タグの最後にのハンドラーをセットアップします。

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


1

非常にシンプルな1行のソリューション:

<body onLoad="document.getElementById('myinputbox').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

試してください:

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>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.