テキストボックスのカーソル位置を取得するサンプルです。
サンプルソース
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html> <html lang="ja"> <head> <title>サンプル</title> <meta charset="utf-8"> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#txt1').keyup(function(event){ var selIdx = $(this).get(0).selectionStart; $('#view').get(0).innerText = selIdx; }); }); </script> </head> <body> <input type="text" id="txt1"> <p id="view">0</p> </body> </html> |
サンプル
↓動作確認ができます。
カーソル位置は、0です。
解説
- カーソル位置を取得するには、パラメータ「selectionStart」の値を取得すればOKです。