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框聚焦

我用js控制input文本框的值,使input文本框内容改变。

input输入框和select下拉框内容清除

input输入框的各种样式

使input文本框不可编辑的3种方法(有disabled属性的input框,后台获取不到值)