如下所示:
$.fn.setCursorPosition = function(position) { if (this.lengh == 0) return this; return $(this).setSelection(position, position); }; $.fn.setSelection = function(selectionStart, selectionEnd) { if (this.lengh == 0) return this; input = this[0]; if (input.createTextRange) { var range = input.createTextRange(); range.collapse(true); range.moveEnd('character', selectionEnd); range.moveStart('character', selectionStart); range.select(); } else if (input.setSelectionRange) { input.focus(); input.setSelectionRange(selectionStart, selectionEnd); } return this; }; $.fn.focusEnd = function() { this.setCursorPosition(this.val().length); };
以上這篇jQuery設置聚焦並使光標位置在文字最後的實現方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。