テキストフィールドのフォーカス位置を求める


動作ブラウザ 【 IE:4.0  NN:3.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows × - - × -
Macintosh × - × - -
UNIX - - - - - × - - -
Dreamcast - - - - - - - - - - × × -

ポイント fcName = " "; // フォーカス時のテキストフィールド名 住所:<input type="text" name="myTEXT1" onFocus="fcName=this.name"><br>
説  明 フォーカス位置を求めるにはフォーカスを取得したいテキストフィールドにonfocusイベントを記述し変数に自分自身の名前またはIDを入れるようにします。あとは変数を参照すれば、どこにフォーカスされているか調べることができます。場合によってはフォーカスが外れた場合(onblurイベント時)の処理も行う必要があるかもしれません。
サンプル <html> <head> <title>テキストフィールドのフォーカス位置を求める</title> <script language="JavaScript"><!-- fcName = " "; // フォーカス時のテキストフィールド名 // --></script> </head> <body> <form name="myFORM"> 住所:<input type="text" name="myTEXT1" onFocus="fcName=this.name"><br> 氏名:<input type="text" name="myTEXT2" onFocus="fcName=this.name"><br> 年齢:<input type="text" name="myTEXT3" onFocus="fcName=this.name"><br> <input type="button" value="フォーカス位置を求める" onClick="alert(fcName)"> </form> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA