input框focusEnd
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input框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(){
this.setCursorPosition(this.val().length);
}
$("###").focusEnd();
以上是关于input框focusEnd的主要内容,如果未能解决你的问题,请参考以下文章
input.style.borderColor及input.style.backgroundColor 输入框样式特效 鼠标移过输入框 输入框背景变色
js input框输入1位数字后自动跳到下一个input框聚焦