經測試,兼容IE8
//設置焦點相關---begin//用法:$("#txtInput").val("你好").focusEnd();$.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 () { if (this.val() != undefined) { this.setCursorPosition(this.val().length); }}//設置焦點相關---end以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!
新聞熱點
疑難解答