欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

将鼠标焦点定位到文本框最后(代码分享)

程序员文章站 2022-06-20 19:33:59
经测试,兼容ie8 //设置焦点相关---begin //用法:$("#txtinput").val("你好").focusend(); $.fn.setcu...

经测试,兼容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

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!