web-dev-qa-db-ja.com

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

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

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

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

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

ちょっと頭に浮かぶ-これをサポートするブラウザーのJavaScriptなしでHTML5でこれを行うことができます:

<input type="text" autofocus>

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

44
David Calhoun
$(document).ready(function() {
    $('#id').focus();
});
10
Nasruddin
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">
3
crnlx

これを行うポータブルな方法は、 this one のようなカスタム機能(ブラウザーの違いを処理するため)を使用することです。

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

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

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

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

正常に動作しています...

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

これは私にとってうまくいくものです:

<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

0
Roger

試行:

Javascript Pure:

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

Jquery:

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

何らかの理由でBODYタグに追加できない場合は、フォームの後にこれを追加できます。

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